pub trait TestFixture<'param, P, R>: Dropwhere
    P: Debug + 'static,
{ fn new(curried_params: &'param P) -> Self; fn parameters() -> Option<Box<dyn Iterator<Item = P>>>; fn setup(&mut self) -> FixtureBinding<'_, Self, R>
    where
        Self: Sized
; fn tear_down(&self) { ... } }

Required Methods

Provided Methods

Implementors