#[global_allocator]
static ALLOC: dhat::Alloc = dhat::Alloc;
#[test]
fn main() {
dhat::assert_is_panic(
|| dhat::HeapStats::get(),
"dhat: getting heap stats before the profiler has started",
);
dhat::assert_is_panic(
|| dhat::assert!(true),
"dhat: asserting before the profiler has started",
);
{
let _profiler = dhat::Profiler::new_heap();
dhat::assert_is_panic(
|| dhat::Profiler::new_heap(),
"dhat: profiling started a second time",
);
dhat::assert_is_panic(
|| dhat::AdHocStats::get(),
"dhat: getting ad hoc stats while doing heap profiling",
);
dhat::assert_is_panic(
|| dhat::assert!(true),
"dhat: asserting while not in testing mode",
);
}
dhat::assert_is_panic(
|| dhat::HeapStats::get(),
"dhat: getting heap stats after the profiler has stopped",
);
dhat::assert_is_panic(
|| dhat::assert!(true),
"dhat: asserting after the profiler has stopped",
);
}