16#ifndef MICRO_TEST_PLUS_TEST_REPORTER_INLINES_H_
17#define MICRO_TEST_PLUS_TEST_REPORTER_INLINES_H_
31#pragma GCC diagnostic push
32#pragma GCC diagnostic ignored "-Waggregate-return"
34#pragma clang diagnostic ignored "-Wc++98-compat"
35#pragma clang diagnostic ignored "-Wc++98-compat-pedantic"
48 snprintf (buff,
sizeof (buff),
"%p",
reinterpret_cast<void*
> (v));
68 out_.append (std::to_string (
static_cast<long long> (v.
get ())));
80 for (
const auto& arg : t)
82 *
this << (first ?
"" :
", ") << arg;
89 template <
class Lhs_T,
class Rhs_T>
93 return (*
this <<
color (op) << op.
lhs () <<
" == " << op.
rhs ()
97 template <
class Lhs_T,
class Rhs_T>
101 return (*
this <<
color (op) << op.
lhs () <<
" != " << op.
rhs ()
105 template <
class Lhs_T,
class Rhs_T>
109 return (*
this <<
color (op) << op.
lhs () <<
" > " << op.
rhs ()
113 template <
class Lhs_T,
class Rhs_T>
117 return (*
this <<
color (op) << op.
lhs () <<
" >= " << op.
rhs ()
121 template <
class Lhs_T,
class Rhs_T>
125 return (*
this <<
color (op) << op.
lhs () <<
" < " << op.
rhs ()
129 template <
class Lhs_T,
class Rhs_T>
133 return (*
this <<
color (op) << op.
lhs () <<
" <= " << op.
rhs ()
137 template <
class Lhs_T,
class Rhs_T>
141 return (*
this <<
'(' << op.
lhs () <<
color (op) <<
" and " <<
colors_.none
142 << op.
rhs () <<
')');
145 template <
class Lhs_T,
class Rhs_T>
149 return (*
this <<
'(' << op.
lhs () <<
color (op) <<
" or " <<
colors_.none
150 << op.
rhs () <<
')');
160#if defined(__cpp_exceptions)
161 template <
class Expr_T,
class Exception_T>
165 return (*
this <<
color (op) <<
"throws<"
170 template <
class Expr_T>
174 return (*
this <<
color (op) <<
"throws" <<
colors_.none);
177 template <
class Expr_T>
181 return (*
this <<
color (op) <<
"nothrow" <<
colors_.none);
185 template <
class Expr_T>
191 if (message.empty ())
200 template <
class Expr_T>
209 *
this <<
", " << expr;
219#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 fail(Expr_T &expr, bool abort, std::string &message, const reflection::source_location &location)
Report a failed condition.
test_reporter & operator<<(std::string_view sv)
void output_fail_prefix_(std::string &message, const reflection::source_location &location)
auto color(const bool cond)
void output_pass_prefix_(std::string &message)
constexpr auto get(const T &t)
Generic getter, calling the getter implementation.
constexpr auto type_name() -> std::string_view
Parse the PRETTY_FUNCTION macro to extract the type name.
static constexpr auto has_npos_v
typename requires_< Cond >::type requires_t
constexpr auto lhs() const
constexpr auto rhs() const
constexpr auto rhs() const
constexpr auto lhs() const
Greater than or equal comparator.
constexpr auto rhs() const
constexpr auto lhs() const
constexpr auto rhs() const
constexpr auto lhs() const
Less than or equal comparator.
constexpr auto lhs() const
constexpr auto rhs() const
constexpr auto rhs() const
constexpr auto lhs() const
constexpr auto lhs() const
constexpr auto rhs() const
constexpr auto value() const
Operator to check if the expression does not throw any exception.
constexpr auto lhs() const
constexpr auto rhs() const
Operator to check if the expression throws a specific exception.
constexpr decltype(auto) get() const