diff options
author | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2016-12-16 14:03:26 +0100 |
---|---|---|
committer | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2016-12-16 14:05:07 +0100 |
commit | 079bdbdd2b0e23f30ee733b7592c9c5bc119bd1e (patch) | |
tree | ae27a3bd138a76505509f9dedf406cad6f780764 /NEWS | |
parent | 4e529c6a6569d1f352e02af16e53aba7ae7bdc1a (diff) |
add changes for TestCaller and TEST_CASE_PARAMETERIZED into NEWS
Diffstat (limited to 'NEWS')
-rw-r--r-- | NEWS | 13 |
1 files changed, 9 insertions, 4 deletions
@@ -1,6 +1,15 @@ New in CppUnit 1.14.0: --------------------- + - TestCaller supports any callable that can be put into + std::function<void()>. + + - CPPUNIT_TEST_PARAMETERIZED executes a test for any value in + an iteratable. + + - Added new Assertion macros: ASSERT_LESS, ASSERT_GREATER, + ASSERT_LESSEQUAL, ASSERT_GREATEREQUAL + * Portability: - Always build with C++11. @@ -17,10 +26,6 @@ * Test Plug-in Runner: - Fixed crash on Win64 in test runner (fdo#81433) - - Added new Assertion macros: ASSERT_LESS, ASSERT_GREATER, - ASSERT_LESSEQUAL, ASSERT_GREATEREQUAL - - New in CppUnit 1.13.2: --------------------- |