18#if defined(MICRO_OS_PLUS_INCLUDE_CONFIG_H)
19#include <micro-os-plus/config.h>
26#pragma GCC diagnostic ignored "-Waggregate-return"
28#pragma clang diagnostic ignored "-Wc++98-compat"
29#pragma clang diagnostic ignored "-Wc++98-compat-pedantic"
55 if (!message.empty ())
57 *
this << message.c_str ();
80 if (!message.empty ())
82 *
this << message.c_str ();
86#pragma GCC diagnostic push
88#pragma clang diagnostic ignored "-Wsign-conversion"
89#elif defined(__GNUC__)
90#pragma GCC diagnostic ignored "-Wnarrowing"
91#pragma GCC diagnostic ignored "-Wsign-conversion"
97#pragma GCC diagnostic pop
106 *
this <<
" aborted...";
165 out_.append (v ?
"true" :
"false");
172 out_.append (
"nullptr");
179 out_.append (std::to_string (c));
187 out_.append (std::to_string (
static_cast<int> (c)));
195 out_.append (std::to_string (v));
203 out_.append (std::to_string (
static_cast<long> (v)));
211 out_.append (std::to_string (v));
218 out_.append (std::to_string (v));
226 out_.append (std::to_string (v));
234 out_.append (std::to_string (v));
242 out_.append (std::to_string (v));
250 out_.append (std::to_string (v));
258 out_.append (std::to_string (v));
266 out_.append (std::to_string (v));
273 out_.append (std::to_string (v));
309 printf (
" • %s - test case started\n", name);
312 " %s✗%s %s - test case %sFAILED%s (%d %s passed, %d "
330 printf (
" • %s - test case started\n", name);
333 " %s✓%s %s - test case passed (%d %s)\n",
colors_.pass,
346 " %s✓%s %s - test case passed (%d %s)\n",
colors_.pass,
380 printf (
"• %s - test suite started\n", name);
402 printf (
"%s✓%s %s - test suite passed (%d %s in %d test %s)\n",
411 printf (
"%s✗%s %s - test suite %sFAILED%s (%d %s passed, %d failed, "
425 printf (
"%s",
out_.c_str ());
Local implementation of the std::source_location.
constexpr auto file_name() const noexcept
constexpr auto line() const noexcept
Reporter to display the test results. For failed tests it prints the actual values of the operands,...
void output_pass_suffix_(void)
void output_fail_suffix_(bool abort)
void flush(void)
Flush the current buffered content.
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)
void output_pass_prefix_(std::string &message)
Base class for all test suites.
constexpr const char * name()
Get the suite name.
constexpr int test_cases(void)
Get the number of test cases.
const char * short_name(const char *name)
test_suite_base * current_test_suite
test_reporter & endl(test_reporter &stream)