feat(adapter): add diagnostics to show which test failed

This commit is contained in:
kbwo 2024-11-30 18:19:28 +09:00
parent e09a50d60c
commit aa4883e038
6 changed files with 167 additions and 76 deletions

View file

@ -53,4 +53,13 @@ mod tests {
}
}
}
fn p() {
panic!("test failed");
}
#[test]
fn test_panic() {
p();
}
}