micro-test-plus 3.2.2
The µTest++ Testing Framework
Loading...
Searching...
No Matches
test-suite.h
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#ifndef MICRO_TEST_PLUS_TEST_SUITE_H_
17#define MICRO_TEST_PLUS_TEST_SUITE_H_
18
19// ----------------------------------------------------------------------------
20
21#ifdef __cplusplus
22
23// ----------------------------------------------------------------------------
24
25#include <functional>
26
27// ----------------------------------------------------------------------------
28
29#if defined(__GNUC__)
30#pragma GCC diagnostic push
31#pragma GCC diagnostic ignored "-Wpadded"
32#if !defined(__clang__) // GCC only
33#pragma GCC diagnostic ignored "-Wsuggest-final-types"
34#pragma GCC diagnostic ignored "-Wsuggest-final-methods"
35#endif
36#if defined(__clang__)
37#pragma clang diagnostic ignored "-Wc++98-compat"
38#endif
39#endif
40
42{
43 // --------------------------------------------------------------------------
44
50 {
51 public:
56 test_suite_base (const char* name);
57
58 // The rule of five.
63 = delete;
66 = delete;
67
68 virtual ~test_suite_base ();
69
77 virtual void
78 run (void);
79
86 void
87 begin_test_case (const char* name);
88
96 void
97 end_test_case (void);
98
105 [[nodiscard]] constexpr const char*
107 {
108 return name_;
109 }
110
118 void
120
128 void
129 increment_failed (void);
130
137 [[nodiscard]] constexpr int
139 {
140 return successful_checks_;
141 }
142
149 [[nodiscard]] constexpr int
151 {
152 return failed_checks_;
153 }
154
161 [[nodiscard]] constexpr int
163 {
164 return test_cases_;
165 }
166
174 void
175 begin_test_suite (void);
176
184 void
185 end_test_suite (void);
186
193 [[nodiscard]] constexpr bool
195 {
196 // Also fail if none passed.
197 return (failed_checks_ == 0 && successful_checks_ != 0);
198 }
199
206 [[nodiscard]] constexpr bool
207 unused (void)
208 {
209 return (failed_checks_ == 0 && successful_checks_ == 0
210 && test_cases_ == 0);
211 }
212
213 protected:
217 const char* name_;
218
222 const char* test_case_name_;
223
228
233
237 int test_cases_ = 0;
238
239 public:
241 struct
242 {
246 };
247
255 {
256 public:
268 template <typename Callable_T, typename... Args_T>
269 test_suite (const char* name, Callable_T&& callable,
270 Args_T&&... arguments);
271
272 // The rule of five.
273 test_suite (const test_suite&) = delete;
274 test_suite (test_suite&&) = delete;
277 = delete;
280 = delete;
281
282 virtual ~test_suite () override;
283
284 virtual void
285 run (void) override;
286
287 protected:
288 std::function<void (void)> callable_;
289 };
290
291 // --------------------------------------------------------------------------
292} // namespace micro_os_plus::micro_test_plus
293
294#if defined(__GNUC__)
295#pragma GCC diagnostic pop
296#endif
297
298// ----------------------------------------------------------------------------
299
300#endif // __cplusplus
301
302// ----------------------------------------------------------------------------
303
304#endif // MICRO_TEST_PLUS_TEST_SUITE_H_
305
306// ----------------------------------------------------------------------------
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.
constexpr bool unused(void)
If all counter are null, it is unused.
Definition test-suite.h:207
constexpr int failed_checks(void)
Get the number of conditions that failed.
Definition test-suite.h:150
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.
test_suite_base & operator=(const test_suite_base &)=delete
test_suite_base(const test_suite_base &)=delete
constexpr int successful_checks(void)
Get the number of conditions that passed.
Definition test-suite.h:138
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
constexpr bool was_successful(void)
Get the test suite result.
Definition test-suite.h:194
constexpr int test_cases(void)
Get the number of test cases.
Definition test-suite.h:162
std::function< void(void)> callable_
Definition test-suite.h:288
test_suite(const test_suite &)=delete
test_suite(const char *name, Callable_T &&callable, Args_T &&... arguments)
Construct a test suite.
Definition inlines.h:40
test_suite & operator=(const test_suite &)=delete
virtual void run(void) override
Run the sequence of test cases in the suite.