| 20 | namespace { |
| 21 | |
| 22 | static FILE* OpenFile(const std::string& path) { |
| 23 | #ifdef _MSC_VER |
| 24 | return _wfopen(UTF8Util::GetPlatformString(path).c_str(), L"rb"); |
| 25 | #else |
| 26 | return fopen(UTF8Util::GetPlatformString(path).c_str(), "rb"); |
| 27 | #endif |
| 28 | } |
| 29 | |
| 30 | void ExpectRevComplete(const std::string& phrasesName) { |
| 31 | std::unique_ptr<Runfiles> runfiles(Runfiles::CreateForTest()); |
no test coverage detected