| 67 | class ThreadSafeTest : public ::testing::Test { |
| 68 | protected: |
| 69 | void SetUp() override { |
| 70 | test_output.clear(); |
| 71 | task_execution_count = 0; |
| 72 | thread1_requests = 0; |
| 73 | thread2_requests = 0; |
| 74 | isr_requests = 0; |
| 75 | clearTaskRequestQueue(); |
| 76 | isInISRContext = false; |
| 77 | } |
| 78 | |
| 79 | void TearDown() override { |
| 80 | clearTaskRequestQueue(); |
nothing calls this directly
no test coverage detected