| 26 | #include "gtest/gtest.h" |
| 27 | |
| 28 | String getProjectRoot() |
| 29 | { |
| 30 | #ifdef _WIN64 |
| 31 | return paths::ConcatPath(env::GetProgPath(), L"../../.."); |
| 32 | #else |
| 33 | return paths::ConcatPath(env::GetProgPath(), L"../../"); |
| 34 | #endif |
| 35 | } |
| 36 | |
| 37 | void Wait(unsigned ms) |
| 38 | { |
no test coverage detected