2018-03-04 09:16:51 -08: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 08:17:23 -07:00
|
|
|
|
2018-09-19 08:55:45 -07:00
|
|
|
#ifndef FMT_TEST_ASSERT_H_
|
|
|
|
#define FMT_TEST_ASSERT_H_
|
2015-06-22 08:17:23 -07:00
|
|
|
|
2015-06-22 09:24:54 -07:00
|
|
|
#include <stdexcept>
|
2020-05-07 15:59:46 -07:00
|
|
|
|
2018-09-19 08:55:45 -07:00
|
|
|
#include "gtest.h"
|
2015-06-22 08:17:23 -07:00
|
|
|
|
2018-09-19 08:55:45 -07:00
|
|
|
class assertion_failure : public std::logic_error {
|
2015-06-22 09:24:54 -07:00
|
|
|
public:
|
2019-01-12 18:27:38 -08:00
|
|
|
explicit assertion_failure(const char* message) : std::logic_error(message) {}
|
2019-10-12 02:44:20 +09:00
|
|
|
|
|
|
|
private:
|
|
|
|
virtual void avoid_weak_vtable();
|
2015-06-22 09:24:54 -07:00
|
|
|
};
|
2015-06-22 08:17:23 -07:00
|
|
|
|
2019-10-12 02:44:20 +09:00
|
|
|
void assertion_failure::avoid_weak_vtable() {}
|
|
|
|
|
2015-06-22 08:17:23 -07:00
|
|
|
#define FMT_ASSERT(condition, message) \
|
2018-09-19 08:55:45 -07:00
|
|
|
if (!(condition)) throw assertion_failure(message);
|
2015-06-22 08:17:23 -07:00
|
|
|
|
|
|
|
// Expects an assertion failure.
|
|
|
|
#define EXPECT_ASSERT(stmt, message) \
|
2018-09-19 08:55:45 -07:00
|
|
|
FMT_TEST_THROW_(stmt, assertion_failure, message, GTEST_NONFATAL_FAILURE_)
|
2015-06-22 08:17:23 -07:00
|
|
|
|
2018-09-19 08:55:45 -07:00
|
|
|
#endif // FMT_TEST_ASSERT_H_
|