| 18 | } |
| 19 | |
| 20 | TEST(UtilitiesStatsTest, CountersRemainZeroWithoutDefine) |
| 21 | { |
| 22 | ensure_thread(); |
| 23 | SolverContext ctx; |
| 24 | ctx.utilities().util().stats_reset(); |
| 25 | |
| 26 | (void)ctx.trans_table(); |
| 27 | ctx.dispose_trans_table(); |
| 28 | |
| 29 | const auto& st = ctx.utilities().util().stats(); |
| 30 | EXPECT_EQ(0u, st.tt_creates); |
| 31 | EXPECT_EQ(0u, st.tt_disposes); |
| 32 | } |
nothing calls this directly
no test coverage detected