rust/tests/ui/custom-test-frameworks-simple.rs

23 lines
359 B
Rust
Raw Normal View History

2018-07-21 01:04:02 +00:00
// compile-flags: --test
// run-pass
#![feature(custom_test_frameworks)]
#![test_runner(crate::foo_runner)]
#[cfg(test)]
2019-05-28 18:46:13 +00:00
fn foo_runner(ts: &[&dyn Fn(usize)->()]) {
2018-07-21 01:04:02 +00:00
for (i, t) in ts.iter().enumerate() {
t(i);
}
}
#[test_case]
fn test1(i: usize) {
println!("Hi #{}", i);
}
#[test_case]
fn test2(i: usize) {
println!("Hey #{}", i);
}