testtools/
lib.rs

1//! _testtools_ is a library containing tools used to eliminate boilerplate
2//! code in tests.
3
4pub mod sync;
5pub mod task;
6pub mod thread;
7
8/// Old name from [`sync::Checkpoint`].
9#[deprecated(since = "0.1.1", note = "use `sync::Checkpoint` instead")]
10pub type Synchronizer<T> = sync::Checkpoint<T>;
11
12// vim: set ft=rust et sw=2 ts=2 sts=2 cinoptions=2 tw=79 :