Trait necessist_core::framework::Run
source · pub trait Run {
// Required methods
fn dry_run(
&self,
context: &LightContext<'_>,
test_file: &Path,
) -> Result<()>;
fn exec(
&self,
context: &LightContext<'_>,
test_name: &str,
span: &Span,
) -> Result<Option<(Exec, Option<Box<Postprocess>>)>>;
}