source: trunk/icedtea-web/tests/UnitTest++/README

Last change on this file was 427, checked in by dmik, 11 years ago

icedtea-web: Import version 1.5.1 from vendor.

File size: 2.1 KB
Line 
1UnitTest++ README
2Version: v1.4
3Last update: 2008-10-30
4
5UnitTest++ is free software. You may copy, distribute, and modify it under
6the terms of the License contained in the file COPYING distributed
7with this package. This license is the same as the MIT/X Consortium
8license.
9
10See src/tests/TestUnitTest++.cpp for usage.
11
12Authors:
13Noel Llopis (llopis@convexhull.com)
14Charles Nicholson (charles.nicholson@gmail.com)
15
16Contributors:
17Jim Tilander
18Kim Grasman
19Jonathan Jansson
20Dirck Blaskey
21Rory Driscoll
22Dan Lind
23Matt Kimmel -- Submitted with permission from Blue Fang Games
24Anthony Moralez
25Jeff Dixon
26Randy Coulman
27Lieven van der Heide
28
29Release notes:
30--------------
31Version 1.4 (2008-10-30)
32- CHECK macros work at arbitrary stack depth from inside TESTs.
33- Remove obsolete TEST_UTILITY macros
34- Predicated test execution (via TestRunner::RunTestsIf)
35- Better exception handling for fixture ctors/dtors.
36- VC6/7/8/9 support
37
38Version 1.3 (2007-4-22)
39- Removed dynamic memory allocations (other than streams)
40- MinGW support
41- Consistent (native) line endings
42- Minor bug fixing
43
44Version 1.2 (2006-10-29)
45- First pass at documentation.
46- More detailed error crash catching in fixtures.
47- Standard streams used for printing objects under check. This should allow the
48 use of standard class types such as std::string or other custom classes with
49 stream operators to ostream.
50- Standard streams can be optionally compiled off by defining UNITTEST_USE_CUSTOM_STREAMS
51 in Config.h
52- Added named test suites
53- Added CHECK_ARRAY2D_CLOSE
54- Posix library name is libUnitTest++.a now
55- Floating point numbers are postfixed with f in the failure reports
56
57Version 1.1 (2006-04-18)
58- CHECK macros do not have side effects even if one of the parameters changes state
59- Removed CHECK_ARRAY_EQUAL (too similar to CHECK_ARRAY_CLOSE)
60- Added local and global time constraints
61- Removed dependencies on strstream
62- Improved Posix signal to exception translator
63- Failing tests are added to Visual Studio's error list
64- Fixed Visual Studio projects to work with spaces in directories
65
66Version 1.0 (2006-03-15)
67- Initial release
68
Note: See TracBrowser for help on using the repository browser.