rust/tests/run-make/libtest-json/f.rs

23 lines
236 B
Rust

#[test]
fn a() {
println!("print from successful test");
// Should pass
}
#[test]
fn b() {
assert!(false);
}
#[test]
#[should_panic]
fn c() {
assert!(false);
}
#[test]
#[ignore = "msg"]
fn d() {
assert!(false);
}