| 8 | #include <string> |
| 9 | |
| 10 | TEST(BoutExceptionTest, ThrowCorrect) { |
| 11 | EXPECT_THROW(throw BoutException("test"), BoutException); |
| 12 | } |
| 13 | |
| 14 | TEST(BoutExceptionTest, What) { |
| 15 | std::string test_message{"Test message"}; |
nothing calls this directly
no test coverage detected