pub trait TestFn {
    type Output;

    fn run_test(self, args: TestArgs) -> Self::Output;
}

Required Associated Types

Required Methods

Implementations on Foreign Types

Implementors