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
9
//! Defines the enum `PanicWhen`.

/// Defines the configurations when a test can panic.
#[derive(Clone, Copy)]
pub enum PanicWhen {
    Debug,
    Release,
    DebugAndRelease,
}