summaryrefslogtreecommitdiffstats
path: root/src/fmt/test/assert-test.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/fmt/test/assert-test.cc')
-rw-r--r--src/fmt/test/assert-test.cc28
1 files changed, 28 insertions, 0 deletions
diff --git a/src/fmt/test/assert-test.cc b/src/fmt/test/assert-test.cc
new file mode 100644
index 000000000..bc728b53e
--- /dev/null
+++ b/src/fmt/test/assert-test.cc
@@ -0,0 +1,28 @@
+// Formatting library for C++ - assertion tests
+//
+// Copyright (c) 2012 - present, Victor Zverovich
+// All rights reserved.
+//
+// For the license information refer to format.h.
+
+#include "fmt/core.h"
+#include "gtest.h"
+
+TEST(AssertTest, Fail) {
+#if GTEST_HAS_DEATH_TEST
+ EXPECT_DEBUG_DEATH(FMT_ASSERT(false, "don't panic!"), "don't panic!");
+#else
+ fmt::print("warning: death tests are not supported\n");
+#endif
+}
+
+bool test_condition = false;
+
+TEST(AssertTest, DanglingElse) {
+ bool executed_else = false;
+ if (test_condition)
+ FMT_ASSERT(true, "");
+ else
+ executed_else = true;
+ EXPECT_TRUE(executed_else);
+}