pub trait Callbacks: Sync {
fn on_pass(&self, name: &FullName);
fn on_skip(&self, name: &FullName);
fn on_bug(&self, name: &FullName, error: Error);
fn on_fail(&self, name: &FullName, errors: Vec<Error>, output: Output);
fn should_run(&self, _name: &FullName) -> bool { ... }
}
Required methods
Provided methods
fn should_run(&self, _name: &FullName) -> bool
fn should_run(&self, _name: &FullName) -> bool
Should this test be executed?