1
0
Fork 0
forked from wry/wry

it: run tests in parallel

This commit is contained in:
Julian Orth 2022-05-03 12:45:20 +02:00
parent 09d9f2ccbb
commit fa8d079c72
4 changed files with 64 additions and 12 deletions

View file

@ -58,7 +58,7 @@ mod t0002_window;
mod t0003_multi_window;
mod t0004_quit;
pub trait TestCase {
pub trait TestCase: Sync {
fn name(&self) -> &'static str;
fn run(&self, testrun: Rc<TestRun>) -> Box<dyn Future<Output = Result<(), TestError>>>;
}