micro-test-plus 3.2.2
The µTest++ Testing Framework
Loading...
Searching...
No Matches
test-runner.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_RUNNER_H_
17#define MICRO_TEST_PLUS_TEST_RUNNER_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__)
33#pragma clang diagnostic ignored "-Wc++98-compat"
34#endif
35#endif
36
38{
39 // --------------------------------------------------------------------------
40
41 class test_suite_base;
42
43 // --------------------------------------------------------------------------
44
51 {
52 public:
53 test_runner ();
54
55 // The rule of five.
56 test_runner (const test_runner&) = delete;
60 = delete;
63 = delete;
64
65 ~test_runner () = default;
66
71 void
72 initialize (int argc, char* argv[], const char* name);
73
77 int
78 exit_code (void);
79
84 void
86
87 constexpr const char*
88 name (void)
89 {
91 }
92
93 [[noreturn]] void
94 abort (void);
95
96 protected:
97 int argc_ = 0;
98 char** argv_ = nullptr;
99
100 const char* default_suite_name_ = "Test";
101
107
114 std::vector<test_suite_base*>* suites_;
115 };
116
117 // --------------------------------------------------------------------------
118} // namespace micro_os_plus::micro_test_plus
119
120#if defined(__GNUC__)
121#pragma GCC diagnostic pop
122#endif
123
124// ----------------------------------------------------------------------------
125
126#endif // __cplusplus
127
128// ----------------------------------------------------------------------------
129
130#endif // MICRO_TEST_PLUS_TEST_RUNNER_H_
131
132// ----------------------------------------------------------------------------
test_runner & operator=(const test_runner &)=delete
std::vector< test_suite_base * > * suites_
Pointer to array of registered test suites. Statically initialised to zero as BSS,...
constexpr const char * name(void)
Definition test-runner.h:88
test_suite_base * default_test_suite_
Pointer to the default test suite which groups the main tests.
test_runner(const test_runner &)=delete
int exit_code(void)
Return 0 if the all tests were successful, 1 otherwise.
void initialize(int argc, char *argv[], const char *name)
Pass the main arguments explicitly, if the default constructor was used.
void register_test_suite(test_suite_base *suite)
Called by test suite constructors to register them to the runner.
Base class for all test suites.
Definition test-suite.h:50