UnitTest++
Description
UnitTest++ is a unit testing framework for C++ designed for simplicity and portability. Features include no explicit test registration, good crash handling, fixtures, rich condition-checking functionality, minimal footprint for embedded environments.
Categories
License
Update Notifications
User Ratings
User Reviews
-
Very easy to setup, easy to write test cases, and build fast, that very good. But I'm not sure if it can provide the coverage report as CppUnit.
-
fast download and works, recommended.
-
Easy to install and use.
-
I was using Boost.Test which took like 9 seconds to compile my testcase (coz Boost is template-heavy) but then I switched to UnitTest++ which compiles in 2.5 sec ! And changing all my existing Boost testcases was very trivial, just replace BOOST_CHECK( ) --> CHECK( ) and BOOST_CHECK_EQUAL( ) --> CHECK_EQUAL( ), and call RunAllTests( ) from main( ). Voila ! What speed-up ! Many thanks to the developers, I'm certainly going to recommend this to my friends and colleagues.
-
Very easy to use even for a beginner like me. Thank you!
-
fast download and works, recommended.