Mercurial > fife-parpg
comparison ext/UnitTest++/README @ 37:0d325e9d5953
added unittest++ files into ext. Not hooked into build scripts yet
author | jasoka@33b003aa-7bff-0310-803a-e67f0ece8222 |
---|---|
date | Sat, 12 Jul 2008 12:00:57 +0000 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
36:6f1227f4932b | 37:0d325e9d5953 |
---|---|
1 UnitTest++ README | |
2 Version: v1.3 | |
3 Last update: 2007-4-22 | |
4 | |
5 | |
6 UnitTest++ is free software. You may copy, distribute, and modify it under | |
7 the terms of the License contained in the file COPYING distributed | |
8 with this package. This license is the same as the MIT/X Consortium | |
9 license. | |
10 | |
11 See src/tests/TestUnitTest++.cpp for usage. | |
12 | |
13 Authors: | |
14 Noel Llopis (llopis@convexhull.com) | |
15 Charles Nicholson (cn@cnicholson.net) | |
16 | |
17 Contributors: | |
18 Jim Tilander (jim.tilander@gmail.com) | |
19 Kim Grasman (kim@mvps.org) | |
20 Jonathan Jansson (lilliemarck@users.sourceforge.net) | |
21 Dirck Blaskey (listtarget2@danbala.com) | |
22 Rory Driscoll (rorydriscoll@gmail.com) | |
23 Dan Lind (podcat@gmail.com) | |
24 Matt Kimmel (mattkimmel@gmail.com) -- Submitted with permission from Blue Fang Games | |
25 Anthony Moralez (anthony.moralez@gmail.com) | |
26 Jeff Dixon <bodisafa@helixe.com> | |
27 | |
28 | |
29 Release notes | |
30 -------------- | |
31 Version 1.3 (2007-4-22) | |
32 - Removed dynamic memory allocations (other than streams) | |
33 - MinGW support | |
34 - Consistent (native) line endings | |
35 - Minor bug fixing | |
36 | |
37 Version 1.2 (2006-10-29) | |
38 - First pass at documentation. | |
39 - More detailed error crash catching in fixtures. | |
40 - Standard streams used for printing objects under check. This should allow the | |
41 use of standard class types such as std::string or other custom classes with | |
42 stream operators to ostream. | |
43 - Standard streams can be optionally compiled off by defining UNITTEST_USE_CUSTOM_STREAMS | |
44 in Config.h | |
45 - Added named test suites | |
46 - Added CHECK_ARRAY2D_CLOSE | |
47 - Posix library name is libUnitTest++.a now | |
48 - Floating point numbers are postfixed with f in the failure reports | |
49 | |
50 Version 1.1 (2006-04-18) | |
51 - CHECK macros do not have side effects even if one of the parameters changes state | |
52 - Removed CHECK_ARRAY_EQUAL (too similar to CHECK_ARRAY_CLOSE) | |
53 - Added local and global time constraints | |
54 - Removed dependencies on strstream | |
55 - Improved Posix signal to exception translator | |
56 - Failing tests are added to Visual Studio's error list | |
57 - Fixed Visual Studio projects to work with spaces in directories | |
58 | |
59 | |
60 Version 1.0 (2006-03-15) | |
61 - Initial release | |
62 |