-------------------------------------------------------------------------
| 28 | { |
| 29 | //------------------------------------------------------------------------- |
| 30 | TEST(BinaryExporterTest, SubFolderDoesNotExist) |
| 31 | { |
| 32 | Plugin::CoverageData coverageData{ L"", 0 }; |
| 33 | |
| 34 | TestHelper::TemporaryPath output; |
| 35 | auto outputPath = output.GetPath() / "SubFolder" / "output.cov"; |
| 36 | |
| 37 | ASSERT_FALSE(Tools::FileExists(outputPath)); |
| 38 | Exporter::BinaryExporter().Export(coverageData, outputPath); |
| 39 | ASSERT_TRUE(Tools::FileExists(outputPath)); |
| 40 | } |
| 41 | |
| 42 | //------------------------------------------------------------------------- |
| 43 | TEST(BinaryExporterTest, OutputExists) |
nothing calls this directly
no test coverage detected