slint/tests/rustdriver/main.rs
Olivier Goffart 772f77b700 Rust test: generate a different file for each test
So that the file name show which test it cames from in case of error
2020-06-05 19:51:41 +02:00

8 lines
176 B
Rust

//#![allow(unused)]
#[cfg(test)]
include!(concat!(env!("OUT_DIR"), "/generated.rs"));
fn main() {
println!("Nothing to see here, please run me through cargo test :)");
}