| 30 | using error::Code; |
| 31 | |
| 32 | void WaitForStopThread(Coordinator* coord, Notification* about_to_wait, |
| 33 | Notification* done) { |
| 34 | about_to_wait->Notify(); |
| 35 | coord->WaitForStop(); |
| 36 | done->Notify(); |
| 37 | } |
| 38 | |
| 39 | TEST(CoordinatorTest, TestStopAndWaitOnStop) { |
| 40 | Coordinator coord; |
nothing calls this directly
no test coverage detected