slint/tests/driver/main.rs
Simon Hausmann 46d7aaa2cb WIP
2020-06-05 14:11:29 +02:00

13 lines
237 B
Rust

use std::error::Error;
mod cpp;
fn main() -> Result<(), Box<dyn Error>> {
let cpp_driver = cpp::Driver::new()?;
for testcase in test_driver_lib::collect_test_cases()? {
cpp_driver.test(&testcase)?;
}
Ok(())
}