-------------------------------------------------------------------------
| 31 | { |
| 32 | //------------------------------------------------------------------------- |
| 33 | TEST(HandleInformationTest, ComputeFilename) |
| 34 | { |
| 35 | auto outputBinaryPath = TestCoverageConsole::GetOutputBinaryPath(); |
| 36 | fs::path path; |
| 37 | |
| 38 | TestTools::GetHandles(outputBinaryPath, [&](HANDLE hProcess, HANDLE hFile) |
| 39 | { |
| 40 | cov::HandleInformation handleInformation; |
| 41 | |
| 42 | path = handleInformation.ComputeFilename(hFile); |
| 43 | }); |
| 44 | |
| 45 | ASSERT_EQ(outputBinaryPath, path); |
| 46 | } |
| 47 | } |
nothing calls this directly
no test coverage detected