README 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. UnitTest++ README
  2. Version: v1.3
  3. Last update: 2007-4-22
  4. UnitTest++ is free software. You may copy, distribute, and modify it under
  5. the terms of the License contained in the file COPYING distributed
  6. with this package. This license is the same as the MIT/X Consortium
  7. license.
  8. See src/tests/TestUnitTest++.cpp for usage.
  9. Authors:
  10. Noel Llopis ([email protected])
  11. Charles Nicholson ([email protected])
  12. Contributors:
  13. Jim Tilander ([email protected])
  14. Kim Grasman ([email protected])
  15. Jonathan Jansson ([email protected])
  16. Dirck Blaskey ([email protected])
  17. Rory Driscoll ([email protected])
  18. Dan Lind ([email protected])
  19. Matt Kimmel ([email protected]) -- Submitted with permission from Blue Fang Games
  20. Anthony Moralez ([email protected])
  21. Jeff Dixon <[email protected]>
  22. Release notes
  23. --------------
  24. Version 1.3 (2007-4-22)
  25. - Removed dynamic memory allocations (other than streams)
  26. - MinGW support
  27. - Consistent (native) line endings
  28. - Minor bug fixing
  29. Version 1.2 (2006-10-29)
  30. - First pass at documentation.
  31. - More detailed error crash catching in fixtures.
  32. - Standard streams used for printing objects under check. This should allow the
  33. use of standard class types such as std::string or other custom classes with
  34. stream operators to ostream.
  35. - Standard streams can be optionally compiled off by defining UNITTEST_USE_CUSTOM_STREAMS
  36. in Config.h
  37. - Added named test suites
  38. - Added CHECK_ARRAY2D_CLOSE
  39. - Posix library name is libUnitTest++.a now
  40. - Floating point numbers are postfixed with f in the failure reports
  41. Version 1.1 (2006-04-18)
  42. - CHECK macros do not have side effects even if one of the parameters changes state
  43. - Removed CHECK_ARRAY_EQUAL (too similar to CHECK_ARRAY_CLOSE)
  44. - Added local and global time constraints
  45. - Removed dependencies on strstream
  46. - Improved Posix signal to exception translator
  47. - Failing tests are added to Visual Studio's error list
  48. - Fixed Visual Studio projects to work with spaces in directories
  49. Version 1.0 (2006-03-15)
  50. - Initial release