[go: up one dir, main page]

Setup

Trait Setup 

Source
pub trait Setup {
    // Required method
    fn setup(&self, fixture: PathBuf) -> Case;
}
Expand description

Function signature for generating a test Case from a path fixture

Required Methods§

Source

fn setup(&self, fixture: PathBuf) -> Case

Implementors§

Source§

impl<F> Setup for F
where F: Fn(PathBuf) -> Case,