TestRunner

Trait TestRunner 

Source
pub trait TestRunner {
    // Required method
    fn test(
        &self,
        outer_env: &BTreeMap<String, Option<String>>,
        inner_env: &BTreeMap<String, Option<String>>,
        features: Option<&[String]>,
        args: &[String],
        build: bool,
    ) -> Result<()>;
}

Required Methods§

Source

fn test( &self, outer_env: &BTreeMap<String, Option<String>>, inner_env: &BTreeMap<String, Option<String>>, features: Option<&[String]>, args: &[String], build: bool, ) -> Result<()>

Implementors§