pub trait TestVerb<H>: 'static {
// Required methods
fn run(&self, harness: &mut H, node: &KdlNode) -> Result<(), TestErrorCase>;
fn clone_box(&self) -> Box<dyn TestVerb<H>>;
}Expand description
A verb is anything that ‘does’ things in a TestCase