pub trait Testable {
// Required method
fn run(&self) -> Result<(), KernelError>;
}Expand description
Trait that all testable functions must implement
pub trait Testable {
// Required method
fn run(&self) -> Result<(), KernelError>;
}Trait that all testable functions must implement