4 releases

0.2.0 Nov 11, 2023
0.1.2 Jun 22, 2023
0.1.1 May 19, 2023
0.1.0 May 19, 2023

#508 in Unix APIs

Download history 99/week @ 2024-03-13 19/week @ 2024-03-20 12/week @ 2024-03-27 32/week @ 2024-04-03 55/week @ 2024-04-10 116/week @ 2024-04-17 137/week @ 2024-04-24 56/week @ 2024-05-01 9/week @ 2024-05-08 7/week @ 2024-05-15 11/week @ 2024-05-22 33/week @ 2024-05-29 26/week @ 2024-06-05 25/week @ 2024-06-12 21/week @ 2024-06-19 22/week @ 2024-06-26

98 downloads per month

MIT OR Apache-2.0 OR Zlib

20KB
163 lines

winit-test

winit-test provides a simple test harness for testing winit applications.

How to Use

Add your test to Cargo.toml with the harness = false option. This will prevent Rust's default test harness from running your test.

[[test]]
name = "my_test"
path = "tests/my_test.rs"
harness = false

Then, in your test, use the winit_test::main! macro to run your tests. The tests must be functions that take an EventLoopWindowTarget.

use winit_test::winit::event_loop::EventLoopWindowTarget;

fn my_test(elwt: &EventLoopWindowTarget<()>) {
    // ...
}

fn other_test(elwt: &EventLoopWindowTarget<()>) {
    // ...
}

winit_test::main!(my_test, other_test);

License

Licensed under either of

at your option.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.

Dependencies

~2–17MB
~250K SLoC