| 337 | } |
| 338 | |
| 339 | string GetTestExecutableDirectory() { |
| 340 | string exec; |
| 341 | CHECK_OK(Env::Default()->GetExecutablePath(&exec)); |
| 342 | return DirName(exec); |
| 343 | } |
| 344 | |
| 345 | void AssertEventually(const std::function<void(void)>& f, |
| 346 | const MonoDelta& timeout, |
no test coverage detected