Daniel K. O. 4d97a74096 added the tests to make check, fixed tests/joint.cpp 17 yıl önce
..
docs c559028eb7 Updated unit testing framework; added new unit tests 18 yıl önce
src 4d97a74096 added the tests to make check, fixed tests/joint.cpp 17 yıl önce
COPYING c559028eb7 Updated unit testing framework; added new unit tests 18 yıl önce
Makefile.am 4d97a74096 added the tests to make check, fixed tests/joint.cpp 17 yıl önce
Makefile.ori 4d97a74096 added the tests to make check, fixed tests/joint.cpp 17 yıl önce
README c559028eb7 Updated unit testing framework; added new unit tests 18 yıl önce
TestUnitTest++.vsnet2003.vcproj c559028eb7 Updated unit testing framework; added new unit tests 18 yıl önce
TestUnitTest++.vsnet2005.vcproj c559028eb7 Updated unit testing framework; added new unit tests 18 yıl önce
UnitTest++.vsnet2003.sln c559028eb7 Updated unit testing framework; added new unit tests 18 yıl önce
UnitTest++.vsnet2003.vcproj c559028eb7 Updated unit testing framework; added new unit tests 18 yıl önce
UnitTest++.vsnet2005.sln c559028eb7 Updated unit testing framework; added new unit tests 18 yıl önce
UnitTest++.vsnet2005.vcproj c559028eb7 Updated unit testing framework; added new unit tests 18 yıl önce

README

UnitTest++ README
Version: v1.3
Last update: 2007-4-22


UnitTest++ is free software. You may copy, distribute, and modify it under
the terms of the License contained in the file COPYING distributed
with this package. This license is the same as the MIT/X Consortium
license.

See src/tests/TestUnitTest++.cpp for usage.

Authors:
Noel Llopis ([email protected])
Charles Nicholson ([email protected])

Contributors:
Jim Tilander ([email protected])
Kim Grasman ([email protected])
Jonathan Jansson ([email protected])
Dirck Blaskey ([email protected])
Rory Driscoll ([email protected])
Dan Lind ([email protected])
Matt Kimmel ([email protected]) -- Submitted with permission from Blue Fang Games
Anthony Moralez ([email protected])
Jeff Dixon


Release notes
--------------
Version 1.3 (2007-4-22)
- Removed dynamic memory allocations (other than streams)
- MinGW support
- Consistent (native) line endings
- Minor bug fixing

Version 1.2 (2006-10-29)
- First pass at documentation.
- More detailed error crash catching in fixtures.
- Standard streams used for printing objects under check. This should allow the
use of standard class types such as std::string or other custom classes with
stream operators to ostream.
- Standard streams can be optionally compiled off by defining UNITTEST_USE_CUSTOM_STREAMS
in Config.h
- Added named test suites
- Added CHECK_ARRAY2D_CLOSE
- Posix library name is libUnitTest++.a now
- Floating point numbers are postfixed with f in the failure reports

Version 1.1 (2006-04-18)
- CHECK macros do not have side effects even if one of the parameters changes state
- Removed CHECK_ARRAY_EQUAL (too similar to CHECK_ARRAY_CLOSE)
- Added local and global time constraints
- Removed dependencies on strstream
- Improved Posix signal to exception translator
- Failing tests are added to Visual Studio's error list
- Fixed Visual Studio projects to work with spaces in directories


Version 1.0 (2006-03-15)
- Initial release