Test fixture for blink example validation
| 446 | |
| 447 | // Test fixture for blink example validation |
| 448 | class BlinkExampleTest : public ::testing::Test { |
| 449 | protected: |
| 450 | void SetUp() override { |
| 451 | clearBlinkTestOutput(); |
| 452 | LED_state = false; |
| 453 | counter = 0; |
| 454 | interval6 = 0; |
| 455 | debug_output_enabled = false; |
| 456 | } |
| 457 | |
| 458 | void TearDown() override { |
| 459 | clearBlinkTestOutput(); |
| 460 | } |
| 461 | }; |
| 462 | |
| 463 | // ================== APPROACH 1 TESTS ================== |
| 464 |
nothing calls this directly
no outgoing calls
no test coverage detected