Trait TestSuite

Source
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§

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementations on Foreign Types§

Source§

impl TestSuite for ()

Implementors§