16#ifndef MICRO_TEST_PLUS_TEST_REPORTER_H_
17#define MICRO_TEST_PLUS_TEST_REPORTER_H_
36#pragma GCC diagnostic push
37#pragma GCC diagnostic ignored "-Wpadded"
38#pragma GCC diagnostic ignored "-Waggregate-return"
40#pragma clang diagnostic ignored "-Wc++98-compat"
41#pragma clang diagnostic ignored "-Wc++98-compat-pedantic"
55 const char*
none =
"\033[0m";
56 const char*
pass =
"\033[32m";
57 const char*
fail =
"\033[31m";
91 [[nodiscard]]
inline auto
156 template <
typename T>
197 template <
class Lhs_T,
class Rhs_T>
204 template <
class Lhs_T,
class Rhs_T>
211 template <
class Lhs_T,
class Rhs_T>
218 template <
class Lhs_T,
class Rhs_T>
225 template <
class Lhs_T,
class Rhs_T>
232 template <
class Lhs_T,
class Rhs_T>
239 template <
class Lhs_T,
class Rhs_T>
246 template <
class Lhs_T,
class Rhs_T>
257#if defined(__cpp_exceptions)
258 template <
class Expr_T,
class Exception_T>
262 template <
class Expr_T>
266 template <
class Expr_T>
279 template <
class Expr_T>
281 pass (Expr_T& expr, std::string& message);
286 template <
class Expr_T>
288 fail (Expr_T& expr,
bool abort, std::string& message,
345#pragma GCC diagnostic pop
Local implementation of the std::source_location.
Reporter to display the test results. For failed tests it prints the actual values of the operands,...
void output_pass_suffix_(void)
void pass(Expr_T &expr, std::string &message)
Report a passed condition.
void output_fail_suffix_(bool abort)
void flush(void)
Flush the current buffered content.
void fail(Expr_T &expr, bool abort, std::string &message, const reflection::source_location &location)
Report a failed condition.
void end_test_case(const char *name)
void begin_test_case(const char *name)
test_reporter & operator<<(std::string_view sv)
void end_test_suite(test_suite_base &suite)
void begin_test_suite(const char *name)
void output_fail_prefix_(std::string &message, const reflection::source_location &location)
auto color(const bool cond)
void output_pass_prefix_(std::string &message)
Base class for all test suites.
static constexpr auto has_npos_v
typename requires_< Cond >::type requires_t
verbosity
The verbosity levels.
test_reporter & endl(test_reporter &stream)
Colours used to highlight pass vs. fail.
Greater than or equal comparator.
Less than or equal comparator.
Operator to check if the expression does not throw any exception.
Operator to check if the expression throws a specific exception.