bouzuya.hatenablog.com

ぼうずやのにっき

2023-09-12から1日間の記事一覧

catch_unwind で beforeEach/afterEach みたいな何か

bouzuya/rust-examples 。 test で beforeEach / afterEach が欲しいと言われたので catch_unwind を調べた。 std::panic::catch_unwind で一部の panic は catch できる。 fn test3_setup() { println!("test3 setup") } fn test3_teardown() { println!("t…