| 70 | }; |
| 71 | |
| 72 | TEST_F(ReactorTest, TestFunctionIsCalled) { |
| 73 | messenger_->ScheduleOnReactor( |
| 74 | [=](const Status& s) { this->ScheduledTask(s, Status::OK()); }, |
| 75 | MonoDelta::FromSeconds(0)); |
| 76 | latch_.Wait(); |
| 77 | } |
| 78 | |
| 79 | TEST_F(ReactorTest, TestFunctionIsCalledAtTheRightTime) { |
| 80 | MonoTime before = MonoTime::Now(); |
nothing calls this directly
no test coverage detected