| 18 | } |
| 19 | |
| 20 | TEST(UtilitiesLogTest, NoLogWithoutDefine) |
| 21 | { |
| 22 | ensure_thread(); |
| 23 | SolverContext ctx; |
| 24 | |
| 25 | // Ensure clean start |
| 26 | ctx.utilities().log_clear(); |
| 27 | |
| 28 | // Create TT and dispose it; without define there should be no logs |
| 29 | (void)ctx.trans_table(); |
| 30 | ctx.dispose_trans_table(); |
| 31 | |
| 32 | EXPECT_TRUE(ctx.utilities().log_buffer().empty()); |
| 33 | } |
nothing calls this directly
no test coverage detected