1
0
Fork 0
forked from wry/wry

config: add TestConfig

This commit is contained in:
Julian Orth 2022-05-02 20:53:07 +02:00
parent f92c9c6027
commit e212e0b8b1
7 changed files with 175 additions and 6 deletions

View file

@ -56,6 +56,7 @@ macro_rules! tassert_eq {
mod t0001_shm_formats;
mod t0002_window;
mod t0003_multi_window;
mod t0004_quit;
pub trait TestCase {
fn name(&self) -> &'static str;
@ -76,5 +77,6 @@ pub fn tests() -> Vec<&'static dyn TestCase> {
t0001_shm_formats,
t0002_window,
t0003_multi_window,
t0004_quit,
}
}