fmtlegacy/test/test-assert.h

41 lines
1.1 KiB
C
Raw Permalink Normal View History

2018-03-04 17:16:51 +00:00
// Formatting library for C++ - test version of FMT_ASSERT
//
// 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
#ifndef FMT_TEST_ASSERT_H_
#define FMT_TEST_ASSERT_H_
2015-06-22 15:17:23 +00:00
2015-06-22 16:24:54 +00:00
#include <stdexcept>
2020-05-07 22:59:46 +00:00
2021-04-30 21:21:49 +00:00
void throw_assertion_failure(const char* message);
#define FMT_ASSERT(condition, message) \
if (!(condition)) throw_assertion_failure(message);
#include "gtest-extra.h"
#include "gtest/gtest.h"
2015-06-22 15:17:23 +00:00
class assertion_failure : public std::logic_error {
2015-06-22 16:24:54 +00:00
public:
2019-01-13 02:27:38 +00:00
explicit assertion_failure(const char* message) : std::logic_error(message) {}
private:
virtual void avoid_weak_vtable();
2015-06-22 16:24:54 +00:00
};
2015-06-22 15:17:23 +00:00
void assertion_failure::avoid_weak_vtable() {}
// We use a separate function (rather than throw directly from FMT_ASSERT) to
// avoid GCC's -Wterminate warning when FMT_ASSERT is used in a destructor.
inline void throw_assertion_failure(const char* message) {
throw assertion_failure(message);
}
2015-06-22 15:17:23 +00:00
// Expects an assertion failure.
#define EXPECT_ASSERT(stmt, message) \
FMT_TEST_THROW_(stmt, assertion_failure, message, GTEST_NONFATAL_FAILURE_)
2015-06-22 15:17:23 +00:00
#endif // FMT_TEST_ASSERT_H_