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
11 See src/tests/TestUnitTest++.cpp for usage.
14 Noel Llopis (llopis@convexhull.com)
15 Charles Nicholson (cn@cnicholson.net)
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>
31 Version 1.3 (2007-4-22)
32 - Removed dynamic memory allocations (other than streams)
34 - Consistent (native) line endings
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
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
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
60 Version 1.0 (2006-03-15)