#drop #test

dev testdrop

A utility to help test drop implementations

2 releases

Uses old Rust 2015

0.1.2 May 18, 2017
0.1.1 Oct 4, 2016
0.1.0 Oct 4, 2016

#902 in Testing

Download history 82/week @ 2025-10-13 78/week @ 2025-10-20 54/week @ 2025-10-27 44/week @ 2025-11-03 39/week @ 2025-11-10 44/week @ 2025-11-17 45/week @ 2025-11-24 38/week @ 2025-12-01 33/week @ 2025-12-08 46/week @ 2025-12-15 51/week @ 2025-12-22 35/week @ 2025-12-29 28/week @ 2026-01-05 20/week @ 2026-01-12 43/week @ 2026-01-19 27/week @ 2026-01-26

124 downloads per month
Used in 7 crates

MIT/Apache

9KB
138 lines

Droptest

A small crate to help test drop implementation

Build Status Build status

Documentation

Example

Test if the std::rc::Rc drop implementation works.

extern crate testdrop;

use testdrop::TestDrop;
use std::rc::Rc;

let td = TestDrop::new();
let (id, item) = td.new_item();
let item = Rc::new(item);
let item_clone = item.clone();

// Decrease the reference counter, but do not drop.
drop(item_clone);
td.assert_no_drop(id);

// Decrease the reference counter and then drop.
drop(item);
td.assert_drop(id);

License

Licensed under either of

at your option.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.

No runtime deps