mirror of
https://github.com/fmtlib/fmt.git
synced 2025-01-11 21:38:05 +00:00
Don't use internal GTest API
This commit is contained in:
parent
2161a73f2b
commit
13d82e32bd
@ -8,17 +8,12 @@
|
|||||||
#include "fmt/core.h"
|
#include "fmt/core.h"
|
||||||
#include "gtest.h"
|
#include "gtest.h"
|
||||||
|
|
||||||
#if GTEST_HAS_DEATH_TEST
|
|
||||||
# define EXPECT_DEBUG_DEATH_IF_SUPPORTED(statement, regex) \
|
|
||||||
EXPECT_DEBUG_DEATH(statement, regex)
|
|
||||||
#else
|
|
||||||
# define EXPECT_DEBUG_DEATH_IF_SUPPORTED(statement, regex) \
|
|
||||||
GTEST_UNSUPPORTED_DEATH_TEST_(statement, regex, )
|
|
||||||
#endif
|
|
||||||
|
|
||||||
TEST(AssertTest, Fail) {
|
TEST(AssertTest, Fail) {
|
||||||
EXPECT_DEBUG_DEATH_IF_SUPPORTED(FMT_ASSERT(false, "don't panic!"),
|
#if GTEST_HAS_DEATH_TEST
|
||||||
"don't panic!");
|
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;
|
bool test_condition = false;
|
||||||
|
Loading…
Reference in New Issue
Block a user