A lightweight unit testing framework for C++
Find a file
2013-03-24 01:31:40 -05:00
docs Renamed files with + in them to be alphanumeric and baselined to roughly r2 or http://unittestpp.googlecode.com/svn/trunk/ 2013-01-09 23:33:51 -06:00
tests Add support and project files for Visual Studio 2012 2013-03-24 01:13:10 -05:00
UnitTest++ Move src to UnitTest++ and move src/tests to tests. 2013-02-20 00:22:14 -06:00
vs_projects Add support and project files for Visual Studio 2012 2013-03-24 01:13:10 -05:00
.gitattributes Add *.bat as eol=crlf. 2013-03-24 01:31:40 -05:00
.gitignore Add support and project files for Visual Studio 2012 2013-03-24 01:13:10 -05:00
AUTHORS Added autobuild system 2012-11-14 18:44:50 -05:00
ChangeLog Added autobuild system 2012-11-14 18:44:50 -05:00
CMakeLists.txt Add support and project files for Visual Studio 2012 2013-03-24 01:13:10 -05:00
configure.ac Added autobuild system 2012-11-14 18:44:50 -05:00
INSTALL Added autobuild system 2012-11-14 18:44:50 -05:00
LICENSE Rename COPYING to LICENSE; delete NEWS since it was empty anyway. 2013-02-20 22:59:01 -06:00
Makefile.am Added autobuild system 2012-11-14 18:44:50 -05:00
README.md Add Markdown formatting to README.md 2013-02-20 23:04:28 -06:00
TestUnitTest++.vsnet2003.vcproj Normalized line endings 2013-01-31 20:49:13 -06:00
TestUnitTest++.vsnet2005.vcproj Normalized line endings 2013-01-31 20:49:13 -06:00
TestUnitTest++.vsnet2010.vcxproj Adds Visual Studio 2010 project files. 2013-02-15 13:34:58 +01:00
TestUnitTest++.vsnet2010.vcxproj.filters Adds Visual Studio 2010 project files. 2013-02-15 13:34:58 +01:00
TestUnitTestPP_vs6.dsp Normalized line endings 2013-01-31 20:49:13 -06:00
UnitTest++.vsnet2003.sln Normalized line endings 2013-01-31 20:49:13 -06:00
UnitTest++.vsnet2003.vcproj Normalized line endings 2013-01-31 20:49:13 -06:00
UnitTest++.vsnet2005.sln Normalized line endings 2013-01-31 20:49:13 -06:00
UnitTest++.vsnet2005.vcproj Normalized line endings 2013-01-31 20:49:13 -06:00
UnitTest++.vsnet2010.sln Adds Visual Studio 2010 project files. 2013-02-15 13:34:58 +01:00
UnitTest++.vsnet2010.vcxproj Adds Visual Studio 2010 project files. 2013-02-15 13:34:58 +01:00
UnitTest++.vsnet2010.vcxproj.filters Adds Visual Studio 2010 project files. 2013-02-15 13:34:58 +01:00
UnitTestPP_vs6.dsp Normalized line endings 2013-01-31 20:49:13 -06:00
UnitTestPP_vs6.dsw Normalized line endings 2013-01-31 20:49:13 -06:00
unittestpp_vs2005.sln Normalized line endings 2013-01-31 20:49:13 -06:00
unittestpp_vs2008.sln Normalized line endings 2013-01-31 20:49:13 -06:00

UnitTest++

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

Authors:

Contributors not included in github history

  • Jim Tilander
  • Kim Grasman
  • Jonathan Jansson
  • Dirck Blaskey
  • Rory Driscoll
  • Dan Lind
  • Matt Kimmel -- Submitted with permission from Blue Fang Games
  • Anthony Moralez
  • Jeff Dixon
  • Randy Coulman
  • Lieven van der Heide

Historic release notes

Version 1.4 (2008-10-30)

  • CHECK macros work at arbitrary stack depth from inside TESTs.
  • Remove obsolete TEST_UTILITY macros
  • Predicated test execution (via TestRunner::RunTestsIf)
  • Better exception handling for fixture ctors/dtors.
  • VC6/7/8/9 support

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