unit_test:C ++的无摩擦单元测试框架 源码
假设我们要测试以下类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
文件列表
unit_test-main.zip
(预估有个6文件)
unit_test-main
unit_test
11KB
_config.yml
27B
README.md
4KB
example
Foo.h
252B
Makefile
436B
Foo_tests.cpp
451B
暂无评论