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§
Sourcefn run_test(&self, config: &TestConfig) -> Result<TestResult>
fn run_test(&self, config: &TestConfig) -> Result<TestResult>
Run a performance test