-------------------------------------------------------------------------
| 31 | { |
| 32 | //------------------------------------------------------------------------- |
| 33 | TEST(Process, StartWithArgument) |
| 34 | { |
| 35 | cov::StartInfo startInfo{ TestCoverageConsole::GetOutputBinaryPath() }; |
| 36 | startInfo.AddArgument(TestCoverageConsole::TestThrowHandledException); |
| 37 | |
| 38 | cov::Process process{ startInfo }; |
| 39 | ASSERT_NO_THROW(process.Start(0)); |
| 40 | } |
| 41 | |
| 42 | //------------------------------------------------------------------------- |
| 43 | TEST(Process, InvalidProgram) |
nothing calls this directly
no test coverage detected