| 33 | #endif |
| 34 | |
| 35 | static FILE* OpenFile(const std::string& path) { |
| 36 | #ifdef _MSC_VER |
| 37 | return _wfopen(UTF8Util::GetPlatformString(path).c_str(), L"rb"); |
| 38 | #else |
| 39 | return fopen(UTF8Util::GetPlatformString(path).c_str(), "rb"); |
| 40 | #endif |
| 41 | } |
| 42 | |
| 43 | class DictionaryTest : public ::testing::Test { |
| 44 | protected: |
no test coverage detected