micro-test-plus 3.2.2
The µTest++ Testing Framework
Loading...
Searching...
No Matches
test-suite.cpp
Go to the documentation of this file.
1/*
2 * This file is part of the µOS++ project (https://micro-os-plus.github.io/).
3 * Copyright (c) 2021 Liviu Ionescu. All rights reserved.
4 *
5 * Permission to use, copy, modify, and/or distribute this software
6 * for any purpose is hereby granted, under the terms of the MIT license.
7 *
8 * If a copy of the license was not distributed with this file, it can
9 * be obtained from https://opensource.org/licenses/mit.
10 *
11 * Major parts of the code are inspired from v1.1.8 of the Boost UT project,
12 * released under the terms of the Boost Version 1.0 Software License,
13 * which can be obtained from https://www.boost.org/LICENSE_1_0.txt.
14 */
15
16// ----------------------------------------------------------------------------
17
18#if defined(MICRO_OS_PLUS_INCLUDE_CONFIG_H)
19#include <micro-os-plus/config.h>
20#endif // MICRO_OS_PLUS_INCLUDE_CONFIG_H
21
23
24#include <stdio.h>
25
26// ----------------------------------------------------------------------------
27
28#if defined(__clang__)
29#pragma clang diagnostic ignored "-Wc++98-compat"
30#pragma clang diagnostic ignored "-Wc++98-compat-pedantic"
31#endif
32
34{
35 // --------------------------------------------------------------------------
36
38 {
39#if defined(MICRO_OS_PLUS_TRACE_MICRO_TEST_PLUS)
40 printf ("%s\n", __PRETTY_FUNCTION__);
41#endif // MICRO_OS_PLUS_TRACE_MICRO_TEST_PLUS
42
43 name_ = name;
44 // The default test suite needs no registration.
45 }
46
50
51 void
53 {
54#if defined(MICRO_OS_PLUS_TRACE_MICRO_TEST_PLUS)
55 printf ("%s\n", __PRETTY_FUNCTION__);
56#endif // MICRO_OS_PLUS_TRACE_MICRO_TEST_PLUS
57 }
58
59 void
61 {
63
64 reporter.begin_test_suite (name_);
65 }
66
67 void
69 {
71 {
73 }
74 reporter.end_test_suite (*this);
75 }
76
77 void
79 {
81 {
83 }
84
87
89
90 reporter.begin_test_case (test_case_name_);
91 }
92
93 void
95 {
96 reporter.end_test_case (test_case_name_);
97 }
98
99 void
101 {
103 ++current_test_case.successful_checks;
104 }
105
106 void
108 {
110 ++current_test_case.failed_checks;
111 }
112
113 // ==========================================================================
114
115 void
117 {
118 // Run the test suite function prepared with std::bin();
119 callable_ ();
120 }
121
123 {
124#if defined(MICRO_OS_PLUS_TRACE_MICRO_TEST_PLUS)
125 printf ("%s\n", __PRETTY_FUNCTION__);
126#endif // MICRO_OS_PLUS_TRACE_MICRO_TEST_PLUS
127 }
128
129 // --------------------------------------------------------------------------
130} // namespace micro_os_plus::micro_test_plus
131
132// ----------------------------------------------------------------------------
int failed_checks_
Count of test conditions that failed.
Definition test-suite.h:232
virtual void run(void)
Run the sequence of test cases in the suite.
test_suite_base(const char *name)
Construct a test suite.
int test_cases_
Count of test cases in the test suite.
Definition test-suite.h:237
void increment_failed(void)
Count one more failed test conditions.
void begin_test_case(const char *name)
Mark the beginning of a named test case.
const char * name_
The test suite name.
Definition test-suite.h:217
void increment_successful(void)
Count one more passed test conditions.
constexpr const char * name()
Get the suite name.
Definition test-suite.h:106
void end_test_suite(void)
Mark the end of the test suite.
struct micro_os_plus::micro_test_plus::test_suite_base::@312067277254102367232005237157143211367300127240 current_test_case
void end_test_case(void)
Mark the end of a test case.
int successful_checks_
Count of test conditions that passed.
Definition test-suite.h:227
void begin_test_suite(void)
Begin the execution of the test suite.
const char * test_case_name_
The current test case name.
Definition test-suite.h:222
std::function< void(void)> callable_
Definition test-suite.h:288
virtual void run(void) override
Run the sequence of test cases in the suite.