| 61 | // ============ StdCoutLogger tests ============ |
| 62 | |
| 63 | TEST_F(LoggerTest, StdCoutLogger_Creation) |
| 64 | { |
| 65 | auto tree = createSimpleTree(); |
| 66 | |
| 67 | // Should not throw |
| 68 | StdCoutLogger logger(tree); |
| 69 | |
| 70 | // Execute the tree - logger should capture transitions |
| 71 | tree.tickWhileRunning(); |
| 72 | |
| 73 | // Flush should not throw |
| 74 | logger.flush(); |
| 75 | } |
| 76 | |
| 77 | TEST_F(LoggerTest, StdCoutLogger_Enabled) |
| 78 | { |
nothing calls this directly
no test coverage detected