* Sample #1 shows the basic steps of using googletest to test C++ functions.
*[Sample #7](../samples/sample7_unittest.cc) teaches the basics of value-parameterized tests.
* Sample #2 shows a more complex unit test for a class with multiple member
*[Sample #8](../samples/sample8_unittest.cc) shows using `Combine()` in value-parameterized tests.
functions.
*[Sample #9](../samples/sample9_unittest.cc) shows use of the listener API to modify Google Test's console output and the use of its reflection API to inspect test results.
* Sample #3 uses a test fixture.
*[Sample #10](../samples/sample10_unittest.cc) shows use of the listener API to implement a primitive memory leak checker.
* Sample #4 teaches you how to use googletest and `googletest.h` together to
get the best of both libraries.
* Sample #5 puts shared testing logic in a base test fixture, and reuses it in