Skip to main content

Testable

Trait Testable 

Source
pub trait Testable {
    // Required method
    fn run(&self);
}
Expand description

The trait that assign the function is testable.

Required Methods§

Source

fn run(&self)

The things will run

Implementors§

Source§

impl<T> Testable for T
where T: Fn(),