winit-test
provides a simple test harness for testing winit
applications.
Add your test to Cargo.toml
with the harness = false
option. This will prevent Rust's default test harness from running your test.
toml
[[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
.
```rust use winittest::winit::eventloop::EventLoopWindowTarget;
fn my_test(elwt: &EventLoopWindowTarget<()>) { // ... }
fn other_test(elwt: &EventLoopWindowTarget<()>) { // ... }
winittest::main!(mytest, other_test); ```
Licensed under either of
at your option.
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.