假设我们要测试以下类Foo。 /* * Foo.h * A simple class. */ class Foo { public: Foo () {}; ~Foo () {}; void set ( int x) { this -> value = x; }; int get () { return this -> value ; }; private: int value; }; 这是Foo的单元测试文件 /* * Foo_tests.cpp * unit tests for the Foo class. */ # include