mirror of
https://github.com/slint-ui/slint.git
synced 2025-10-02 14:51:15 +00:00
13 lines
237 B
Rust
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(())
|
|
}
|