| 35 | } |
| 36 | |
| 37 | TEST(win32_GetExeLocation, GetsCorrectFileName) |
| 38 | { |
| 39 | const auto [location, hr] = win32::GetExeLocation(); |
| 40 | |
| 41 | ASSERT_HRESULT_SUCCEEDED(hr); |
| 42 | ASSERT_EQ(location.filename(), L"Tests.exe"); |
| 43 | } |
| 44 | |
| 45 | TEST(win32_GetFixedFileVersion, GetsCorrectFileVersion) |
| 46 | { |
nothing calls this directly
no outgoing calls
no test coverage detected