C++ PROGRAMMING
Unit Testing And Mocking
Date Published: | |
Last Modified: |
gtest (Google Test)
gtest (a.k.a Google Test) is an open-source C++ unit testing framework developed and maintained by Google.
The introduction of lambda functions in C++11 make certain C++ unit tests much less verbose. This includes tests where you want to verify that a boost::signal was emitted:
|
|
Adding Timeouts To Google Unit Tests
You can timeouts to Google unit tests by defining the following macros:
|
|
You then use these macros in the following fashion:
|
|
Any code within the TEST_TIMEOUT_BEGIN
and TEST_TIMEOUT_FAIL_END(1000)
macros that takes longer that 1000ms will be aborted, and the test will fail. Credit for the above macros goes to https://antonlipov.blogspot.ca/2015/08/how-to-timeout-tests-in-gtest.html.
gmock (Google Mock)
gmock (a.k.a Google Mock) is an open-source C++ mocking library developed and maintained by Google. It is NOT a unit testing framework, but can be used in conjunction with gtest to provide a fully feature unit testing system.
One disadvantage of gmock is that all class methods that you want to mock must be declared virtual. This increases the computational overhead of the class, and it may not be possible to add virtual if a 3rd party wrote/maintains the class of interest.
UnitTest++
UnitTest++ is a small, lightweight, but capable unit test library for C++ code.
Example output from UnitTest++ when one of the tests fails.
Running Just One Test Suite
The unit tests can be grouped into “Suites” which are designed to be for grouping together similar tests. You can also run just one test suite, useful for preventing yourself getting swamped with errors when debugging failed unit tests. The documentation on many sites on how to run just one suite is wrong as of June 2013 (maybe they recently updated the code). Here is a way I found of doing it:
|
|
Replace “Test Suite Name” with the name of the test suite you want to run.
Authors

This work is licensed under a Creative Commons Attribution 4.0 International License .