Skip to content

Commit

Permalink
Tagging CxxTest 4.4
Browse files Browse the repository at this point in the history
  • Loading branch information
whart222 committed Jun 4, 2014
1 parent 4464237 commit 191addd
Show file tree
Hide file tree
Showing 5 changed files with 32 additions and 15 deletions.
10 changes: 10 additions & 0 deletions Versions
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,16 @@
CxxTest Releases
----------------

* Version 4.4 (2014-06-03)
- Fixed compilation error on Windows (MSVC) in XmlFormatter.h (#86)
- Fix to ensure that tearDown() is called (#89)
- Add option run test with a user defined command in scons (#91)
- Use a Python path relative to the cxxtestgen script (#88)
- Add defensive guard in ErrorFormatter.h (#96)
- Fixed bug with "None" appearing in CXXTEST_CPPATH (#99)
- Added CXXTEST_LIBPATH to properly use shared libraries (#100)
- Added guards when XmlFormatter.h data is not initialize (#87)

* Version 4.3 (2013-07-05)
- Changes to assess code coverage of the cxxtestgen command
- Standardizing C++ file formats (using astyle)
Expand Down
18 changes: 10 additions & 8 deletions admin/announcement
Original file line number Diff line number Diff line change
@@ -1,13 +1,15 @@
We are pleased to announce the updated release of CxxTest 4.3. CxxTest is a unit testing framework for C++ that is similar in spirit to JUnit, CppUnit, and xUnit. CxxTest is easy to use because it does not require precompiling a CxxTest testing library, it employs no advanced features of C++ (e.g. RTTI) and it supports a very flexible form of test discovery.
We are pleased to announce the updated release of CxxTest 4.4. CxxTest is a unit testing framework for C++ that is similar in spirit to JUnit, CppUnit, and xUnit. CxxTest is easy to use because it does not require precompiling a CxxTest testing library, it employs no advanced features of C++ (e.g. RTTI) and it supports a very flexible form of test discovery.

This release resolves the following issues:
This release includes a variety of bug fixes:

- Changes to assess code coverage of the cxxtestgen command
- Standardizing C++ file formats (using astyle)
- Bug fixes that led to the test runner hanging
- Adding special assertions for floating point values
- Added date to XML output
- Added support for comparison of C strings
- Fixed compilation error on Windows (MSVC) in XmlFormatter.h (#86)
- Fix to ensure that tearDown() is called (#89)
- Add option run test with a user defined command in scons (#91)
- Use a Python path relative to the cxxtestgen script (#88)
- Add defensive guard in ErrorFormatter.h (#96)
- Fixed bug with "None" appearing in CXXTEST_CPPATH (#99)
- Added CXXTEST_LIBPATH to properly use shared libraries (#100)
- Added guards when XmlFormatter.h data is not initialize (#87)

See the CxxTest Home Page (http://cxxtest.com) for documentation and download instructions.

Expand Down
11 changes: 8 additions & 3 deletions doc/guide.txt
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ http://xprogramming.com/software.html[xUnit]. CxxTest is easy to
use because it does not require precompiling a CxxTest testing
library, it employs no advanced features of C++ (e.g. RTTI) and it
supports a very flexible form of test discovery. This documentation
describes CxxTest 4.3, which is an incremental release that includes
better test discovery features and new test skipping features.
describes CxxTest 4.4, which is an incremental release that includes
a variety of bug fixes and minor enhancements.

:numbered:

Expand Down Expand Up @@ -1211,7 +1211,7 @@ distribution model is very strategic for cxxtest.
Status and Future Plans
-----------------------
The CxxTest 4.3 release is an incremental release that was driven
The CxxTest 4.4 release is an incremental release that was driven
by a variety of bug fixes and minor enhancements. The CxxTest 4.0
release reflected major changes in the management and focus of
CxxTest:
Expand Down Expand Up @@ -1289,6 +1289,11 @@ developers contributed to the CxxTest 4.x releases:
* Lionel Orry
* John Siirola
* Jon Schlueter
* Andrei Korostelev
* Sebastian Rettenberger
* Piotr Kasprzyk
* Gluttton
* Pawel Tomulik

The CxxTest documentation is generated using
http://www.methods.co.nz/asciidoc/[AsciiDoc].
Expand Down
4 changes: 2 additions & 2 deletions python/cxxtest/__release__.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,5 @@

""" Release Information for cxxtest """

__version__ = '4.3'
__date__ = "2013-07-05"
__version__ = '4.4'
__date__ = "2014-06-03"
4 changes: 2 additions & 2 deletions python/python3/cxxtest/__release__.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,5 @@

""" Release Information for cxxtest """

__version__ = '4.3'
__date__ = "2013-07-05"
__version__ = '4.4'
__date__ = "2014-06-03"

0 comments on commit 191addd

Please sign in to comment.