| 10 | using ::testing::HasSubstr; |
| 11 | |
| 12 | TEST(FatalError, stacktrace) { |
| 13 | EXPECT_DEATH(std::abort(), "Stack trace"); |
| 14 | } |
| 15 | |
| 16 | TEST(CanteraError, stacktrace) { |
| 17 | // MinGW requires an external dependency (libbacktrace) to give meaningful |
nothing calls this directly
no test coverage detected