File: README.md

package info (click to toggle)
libsidplayfp 2.16.0-1
  • links: PTS
  • area: main
  • in suites: forky, sid
  • size: 4,872 kB
  • sloc: cpp: 29,874; sh: 4,476; ansic: 986; makefile: 480; perl: 35
file content (225 lines) | stat: -rw-r--r-- 7,601 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
UTPP - A New Generation of UnitTest++
=====================================

This is a test framework based on UnitTest++.

Latest version can be downloaded from [GitHub](https://neacsum.github.com/utpp).

There is also [documentation](https://neacsum.github.io/utpp) generated with Doxygen.


Author:
Mircea Neacsu (mircea@neacsu.net)


## License ##
The MIT License (MIT)
 
Copyright (c) 2017-2024 Mircea Neacsu

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

For more information see the [LICENSE](LICENSE) file.

## Building ##
This is a headers only library. There is nothing to build. 

## Usage ##
Here is a simple example of a test program:
````C++
#include <utpp/utpp.h>

bool earth_is_round ();
double earth_radius_km ();

TEST (EarthShape)
{
  CHECK (earth_is_round ());
}

TEST (HowBigIsEarth)
{
  CHECK_CLOSE (6371., earth_radius_km(), 1.);
}

TEST_MAIN (int argc, char** argv)
{
  return UnitTest::RunAllTests ();
}
````
The program contains two tests: one that checks if the `earth_is_round` function
returns *true* and another one that checks if the earth_radius_km function is close
enough to the expected value.

The main program is defined using the `TEST_MAIN` macro. It runs all the tests and, if all goes well, returns 0.

Tests are introduced by the `TEST` macro followed by a block of code. Throughout
the test you can check different conditions using one of the `CHECK_...` macros.

The example above showed two of these macros: CHECK verifies that a condition is
true, while CHECK_CLOSE verifies that two values are closer than a specified limit.

Here is another example:
````C++
const char *planet_name () {
  return "Earth";
}

TEST (PlanetName)
{
  CHECK_EQUAL ("Earth", planet_name ());
}

````
The `CHECK_EQUAL` macro verifies that two values compare for equality. It can
compare any values for which an equality operator is defined. 

You can also test if an exception is thrown:
````C++
class flat_earth_exception : public std::exception {
public:
  const char *what () { return "Earth is not flat!"; }
};

void go_to_end_of_earth ()
{
  throw flat_earth_exception();
}

TEST (EndOfTheEarth)
{
  CHECK_THROW (go_to_end_of_earth (), flat_earth_exception);
}

````
### Grouping Tests ###
Tests can be defined in different source files. The magic behind UTPP will make
sure that they are all executed but it doesn't make any promise as to the order
of execution between different files. If you need some kind of ordering, you can
group tests in *suites*. UTPP will execute all the tests in one suite before starting
another. Suites can also be used to get synthetic results for a group of tests.

Here is an example of a test suite definition:
````C++
SUITE (MyNiceTests)
{
// ... many tests here
}
````

### Fixtures ###
When performing test you need certain objects and values to be in a known state
before the beginning of the test. This is called a *fixture*. In UTPP any object
with a default constructor can be used as a fixture. Your tests will be derived
from that object and the state of the object is defined by the fixture constructor.

Example:
````C++
void exchange_to_eur (double& usd, double& eur);

struct Account_fixture {
  Account_fixture () : amount_usd (100), amount_eur (0), amount_chf (0) {}
  ~Account_fixture () {}

  double amount_usd;
  double amount_eur;
  double amount_chf;
};

TEST_FIXTURE (Account_fixture, TestExchangeEur)
{
  exchange_to_eur (amount_usd, amount_eur);
  CHECK_EQUAL (0, amount_usd);
  CHECK (amount_eur > 0);
}
````
A test that uses a fixture is defined using a `TEST_FIXTURE` macro that takes as
arguments the name of the fixture and the name of the test. The fixture constructor
is invoked right before the beginning of the test and it insures that `amount_usd`
is set to 100. Because the test object is derived from the fixture object, any
public or protected members of the fixture are directly available in the test body.

When the test finishes, the fixture destructor gets called and should release any
resources allocated by the constructor.

### Aborting a Test ###
If something goes terribly wrong in a test, the execution can be aborted
using the ABORT or ABORT_EX macros. They work exactly like CHECK and CHECK_EX
macros but, once triggered, the remaining test is abandoned. 

Example:
````C++
TEST_FIXTURE (Account_fixture, Test_Abort)
{
  exchange_to_chf (amount_usd, amount_chf);
  ABORT (amount_usd);
  printf ("Never gets here");
}
````

### Results ###
UTPP results are produced by an object called a *Reporter*. There can be
different type of reporters depending on where the output must be directed.
By default The `RunAllTests()` function uses a reporter that sends results to `stdout`.
The library provides two other reporters: one that generates the output using
the `OutputDebugString` function and one that sends results to an XML file with
a structure similar to the files created by NUnit.

Here is an example how to use the XML reporter:
````C++
int main (int argc, char **argv)
{
  std::ofstream os ("tests.xml");
  UnitTest::ReporterXml xml (os);
  UnitTest::RunAllTests (xml);
}
````

Results file is similar to this sample:
````XML
<?xml version="1.0" encoding="UTF-8"?>
<utpp-results total="21" failed="11" failures="11" duration="12.031">
 <start-time>2022-02-01 01:22:16Z</start-time>
 <command-line>&quot;C:\development\utpp\sample\x64\Debug\sample.exe&quot; </command-line>
 <suite name="EarthSuite">
  <test name="EarthShape" time_ms="0"/>
  <test name="HowBigIsEarth" time_ms="0"/>
  <test name="PlanetName" time_ms="0"/>
  <test name="Martians" time_ms="0">
   <failure message="C:\development\utpp\sample\sample.cpp(120) : Expected &apos;Mars&apos; but was &apos;Earth&apos;"/>
  </test>
  <test name="EndOfTheEarth" time_ms="1"/>
 </suite>
 ....
````
### Execution Control ###
While in most cases `RunAllTests` function is all that's needed to execute all
tests, there may be cases where you need a finer control. The `UnitTest::RunSuite()`
function allows you to run one particular suite while the `UnitTest::DisbleSuite()`
allows you to disable a suite.


## Comparison with GoogleTest
1. Macro definitions for assertion verification have different names: `CHECK_...` macros are almost direct correspondents to GoogleTest `EXPECT_...` macros and `ABORT_...` correspond to `ASSERT_...` definitions.
   
2. In GoogleTest, additional messages are streamed into assertion macros while UTPP `..._EX` macros accept arguments similar to `printf` function.
   
3. GoogleTest fixtures are classes derived from `testing::Test`. Meanwhile UTPP fixtures are arbitrary objects that can be default-constructed.