2018-03-04 17:16:51 +00:00
|
|
|
// Formatting library for C++ - assertion tests
|
|
|
|
//
|
|
|
|
// Copyright (c) 2012 - present, Victor Zverovich
|
|
|
|
// All rights reserved.
|
|
|
|
//
|
|
|
|
// For the license information refer to format.h.
|
2015-06-22 15:17:23 +00:00
|
|
|
|
2017-12-06 15:42:42 +00:00
|
|
|
#include "fmt/core.h"
|
2018-06-06 13:57:59 +00:00
|
|
|
#include "gtest.h"
|
2015-06-22 15:17:23 +00:00
|
|
|
|
|
|
|
#if GTEST_HAS_DEATH_TEST
|
2019-01-13 02:27:38 +00:00
|
|
|
# define EXPECT_DEBUG_DEATH_IF_SUPPORTED(statement, regex) \
|
2015-06-22 15:17:23 +00:00
|
|
|
EXPECT_DEBUG_DEATH(statement, regex)
|
|
|
|
#else
|
2019-01-13 02:27:38 +00:00
|
|
|
# define EXPECT_DEBUG_DEATH_IF_SUPPORTED(statement, regex) \
|
2019-07-04 14:55:36 +00:00
|
|
|
GTEST_UNSUPPORTED_DEATH_TEST_(statement, regex, )
|
2015-06-22 15:17:23 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
TEST(AssertTest, Fail) {
|
2019-01-13 02:27:38 +00:00
|
|
|
EXPECT_DEBUG_DEATH_IF_SUPPORTED(FMT_ASSERT(false, "don't panic!"),
|
|
|
|
"don't panic!");
|
2015-06-22 15:17:23 +00:00
|
|
|
}
|
2019-11-30 15:52:33 +00:00
|
|
|
|
|
|
|
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);
|
|
|
|
}
|