-----------------------------------------------------------------------------
| 88 | |
| 89 | //----------------------------------------------------------------------------- |
| 90 | TEST_F(ExceptionHandlerTest, TestUnHandleCppException) |
| 91 | { |
| 92 | Run(TestCoverageConsole::TestThrowUnHandledCppException); |
| 93 | ASSERT_EQ(cov::ExceptionHandlerStatus::CppError, exceptionHandlerStatus_); |
| 94 | ASSERT_NE(std::string::npos, message_.find(cov::ExceptionHandler::ExceptionCpp)); |
| 95 | } |
| 96 | |
| 97 | //----------------------------------------------------------------------------- |
| 98 | TEST_F(ExceptionHandlerTest, TestUnHandleSEHException) |
nothing calls this directly
no test coverage detected