pub trait TestStep<TI, TO> { // Required method fn step(&self, item: TI) -> TO; }
Trait to be implemented for validating models.
Runs a test step.
item
The test output.