pub trait TestSuite {
    // Provided methods
    fn before_all() { ... }
    fn after_all() { ... }
    fn before_each() { ... }
    fn after_each() { ... }
}
Expand description

Implementors provide custom test suite logic.

Provided Methods§

Implementations on Foreign Types§

source§

impl TestSuite for ()

Implementors§