| 2 | #include "all.h" |
| 3 | |
| 4 | TEST(Appfat, app_fatal) { |
| 5 | EXPECT_EXIT(dvl::app_fatal("test"), ::testing::ExitedWithCode(1), "test"); |
| 6 | } |
| 7 | |
| 8 | TEST(Appfat, ErrDlg) { |
| 9 | EXPECT_EXIT(dvl::ErrDlg("Title", "Unknown error", "appfat.cpp", 7), ::testing::ExitedWithCode(1), "Unknown error\n\nThe error occurred at: appfat.cpp line 7"); |
nothing calls this directly
no test coverage detected