CppUTest is a C /C++ based unit xUnit test framework for unit testing and for test-driving your code.
CppUTest
Where to find more information
- The CppUTest manual can be found at CppUTest.org
- If you have any question, check out the Google Groups
- The sources from which this library was derived may be found at the main github page
Getting test reports on the console
You may need to tailor the file src/Platforms/mbed/UtestPlatform.cpp
to your needs. In particular, if you want console output, you might want to look at the function PlatformSpecificPutchar()
.
Quick introduction (some code!)
To write your first test, all you need is a new cpp file with a TEST_GROUP and a TEST, like:
#include "CppUTest/TestHarness.h" TEST_GROUP(FirstTestGroup) { }; TEST(FirstTestGroup, FirstTest) { FAIL("Fail me!"); }
This test will fail.
You can add new tests to the test group by just writing more tests in the file, like this:
TEST(FirstTestGroup, SecondTest) { STRCMP_EQUAL("hello", "world"); LONGS_EQUAL(1, 2); CHECK(false); }
You do need to trigger the tests from somewhere in your program. It could look something like:
#include "CppUTest/TestRegistry.h" #include "CppUTest/CommandLineTestRunner.h" int main(int ac, char** av) { .... unsigned failureCount = 0; { ConsoleTestOutput output; CommandLineTestRunner runner(ac, av, &output, TestRegistry::getCurrentRegistry()); failureCount = runner.runAllTestsMain(); } if (failureCount == 0) { console.printf("PASSED\r\n"); } ... }
For more information, We’d recommend to read the manual or, even better, check some existing tests such as SimpleStringTest or (a bit more complicated) MemoryLeakDetectorTest or the mocking tests or just check out the Cheat Sheet.
Diff: include/CppUTest/CppUTestConfig.h
- Revision:
- 1:4769360130ed
- Parent:
- 0:0b799af9d58e
--- a/include/CppUTest/CppUTestConfig.h Tue Jan 28 09:27:41 2014 +0000 +++ b/include/CppUTest/CppUTestConfig.h Tue Jun 17 15:52:54 2014 +0100 @@ -62,8 +62,7 @@ #endif #endif - -#if NEED_TO_ENABLE_CPP_SUPPORT /* disabled by default because mbed's +#if NEED_TO_ENABLE_CPP_SUPPORT /* disabled by default because our * toolchain doesn't support exceptions. */ /* Do we use Standard C++ or not? */ #ifndef CPPUTEST_USE_STD_CPP_LIB @@ -124,17 +123,27 @@ #endif #else #define UT_THROW(exception) - #define UT_NOTHROW + #ifdef __clang__ + #define UT_NOTHROW throw() + #else + #define UT_NOTHROW + #endif #endif /* - * CLang's operator delete requires an NOTHROW block. For now, when we use CLang, then have an empty exception specifier. - * However, this ought to be done inside the configure.ac in the future. + * Visual C++ doesn't define __cplusplus as C++11 yet (201103), however it doesn't want the throw(exception) either, but + * it does want throw(). */ -#ifdef __clang__ -#undef UT_NOTHROW -#define UT_NOTHROW throw() +#ifdef _MSC_VER + #undef UT_THROW + #define UT_THROW(exception) +#endif + +#if defined(__cplusplus) && __cplusplus >= 201103L + #define DEFAULT_COPY_CONSTRUCTOR(classname) classname(const classname &) = default; +#else + #define DEFAULT_COPY_CONSTRUCTOR(classname) #endif /* @@ -163,7 +172,8 @@ #endif #endif -#if defined(__cplusplus) && __cplusplus >= 201103L +/* Visual C++ 10.0+ (2010+) supports the override keyword, but doesn't define the C++ version as C++11 */ +#if defined(__cplusplus) && ((__cplusplus >= 201103L) || (defined(_MSC_VER) && (_MSC_VER >= 1600))) #define _override override #else #define _override