PerformanceTestable

Trait PerformanceTestable 

Source
pub trait PerformanceTestable {
    // Required methods
    fn run_test(&self, config: &TestConfig) -> Result<TestResult>;
    fn name(&self) -> &str;
}
Expand description

Trait for performance testable components

Required Methods§

Source

fn run_test(&self, config: &TestConfig) -> Result<TestResult>

Run a performance test

Source

fn name(&self) -> &str

Get the name of the component

Implementors§