test4a 0.1.1

Testing library that provides some tools to apply "Advanced" Arrange-Act-Assert testing design.
Documentation
1
2
3
4
5
6
7
8
//! Defines tools to describe and run tests.

mod act;
mod panic_when;
mod runner;

pub use self::panic_when::PanicWhen;
pub use self::runner::Runner;