1
0
Fork 0
forked from wry/wry

it: test seat creation and broadcast

This commit is contained in:
Julian Orth 2022-05-03 15:25:48 +02:00
parent fa8d079c72
commit cdab4d4cad
9 changed files with 121 additions and 27 deletions

View file

@ -57,6 +57,7 @@ mod t0001_shm_formats;
mod t0002_window;
mod t0003_multi_window;
mod t0004_quit;
mod t0005_create_seat;
pub trait TestCase: Sync {
fn name(&self) -> &'static str;
@ -78,5 +79,6 @@ pub fn tests() -> Vec<&'static dyn TestCase> {
t0002_window,
t0003_multi_window,
t0004_quit,
t0005_create_seat,
}
}