C plus plus unit test framework
Lightweight C++ unit test framework, is based on the original by Michael Feathers.
See more.
Require installed cmake
brew tap denleyhsiao/tap && brew install CppUnitLite
git clone https://github.com/denleyhsiao/CppUnitLite
ccmake .
cmake .
make
make install
cat install_manifest.txt | sudo xargs rm
This is a unit test application based deque :DequeTest
,and use CppUnitLite as unit test framework.
It include follow files:
filename | description |
---|---|
main.cpp | main file |
DequeTest.cpp | unit test file with self-define SetUp/TearDown |
DequeDefaultTest.cpp | unit test file with default SetUp/TearDown |
Deque.h/Deque.cpp | deque define & implement file |