pub trait TestFn {
type Output;
// Required method
fn run_test(self, args: TestArgs) -> Self::Output;
}Available on crate feature
migrate only.pub trait TestFn {
type Output;
// Required method
fn run_test(self, args: TestArgs) -> Self::Output;
}migrate only.