* @brief Clean up test environment after each test * * Clears test output to prevent interference between tests. * Called automatically by Google Test framework after each test method. * Ensures no test artifacts affect subsequent tests. */
| 103 | * Ensures no test artifacts affect subsequent tests. |
| 104 | */ |
| 105 | void TearDown() override { |
| 106 | clearTestOutput(); |
| 107 | } |
| 108 | |
| 109 | /** |
| 110 | * @brief Helper method to run scheduler until condition is met or timeout |
nothing calls this directly
no test coverage detected