Trait TestStepFactory

Source
pub trait TestStepFactory {
    // Required method
    fn initialize(
        &self,
        config: &Config,
        crate_path: &Path,
    ) -> Result<Box<dyn TestStep>>;
}

Required Methods§

Source

fn initialize( &self, config: &Config, crate_path: &Path, ) -> Result<Box<dyn TestStep>>

Implementors§