#[test]
fn main() {
dhat::assert_is_panic(
|| dhat::AdHocStats::get(),
"dhat: getting ad hoc stats when no profiler is running",
);
dhat::assert_is_panic(
|| dhat::assert!(true),
"dhat: asserting when no profiler is running",
);
{
let _profiler = dhat::Profiler::new_ad_hoc();
dhat::assert_is_panic(
|| dhat::Profiler::new_ad_hoc(),
"dhat: creating a profiler while a profiler is already running",
);
dhat::assert_is_panic(
|| dhat::HeapStats::get(),
"dhat: getting heap stats while doing ad hoc profiling",
);
dhat::assert_is_panic(
|| dhat::assert!(true),
"dhat: asserting while not in testing mode",
);
}
dhat::assert_is_panic(
|| dhat::AdHocStats::get(),
"dhat: getting ad hoc stats when no profiler is running",
);
dhat::assert_is_panic(
|| dhat::assert!(true),
"dhat: asserting when no profiler is running",
);
}