testtools 0.1.3

Helpers for eliminating boilerplate code in tests
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! _testtools_ is a library containing tools used to eliminate boilerplate
//! code in tests.

pub mod sync;
pub mod task;
pub mod thread;

/// Old name from [`sync::Checkpoint`].
#[deprecated(since = "0.1.1", note = "use `sync::Checkpoint` instead")]
pub type Synchronizer<T> = sync::Checkpoint<T>;

// vim: set ft=rust et sw=2 ts=2 sts=2 cinoptions=2 tw=79 :