Add tests.

This commit is contained in:
Victor Zverovich 2014-05-13 06:51:17 -07:00
parent 734bb02904
commit 39561f8a08

View File

@ -319,6 +319,16 @@ TEST(UtilTest, ThrowSystemError) {
fmt::internal::FormatSystemErrorMessage, fmt::ThrowSystemError);
}
TEST(ErrorTest, ReportSystemError) {
// TODO
EXPECT_EXIT({
fmt::ReportSystemError(EDOM, "test error");
std::fprintf(stderr, "end\n");
std::exit(0);
}, ::testing::ExitedWithCode(0),
str(fmt::Format("test error: {}\nend\n") << strerror(EDOM)));
}
#ifdef _WIN32
TEST(UtilTest, FormatWinErrorMessage) {
@ -346,6 +356,18 @@ TEST(UtilTest, ThrowWinError) {
fmt::internal::FormatWinErrorMessage, fmt::ThrowWinError);
}
TEST(ErrorTest, ReportWinError) {
// TODO
fmt::Writer message;
fmt::internal::FormatWinErrorMessage(
message, ERROR_FILE_EXISTS, "test error");
EXPECT_EXIT({
fmt::ReportWinError(ERROR_FILE_EXISTS, "test error");
std::fprintf(stderr, "end\n");
std::exit(0);
}, ::testing::ExitedWithCode(0), str(message));
}
#endif // _WIN32
class TestString {