C/C++ Testing framework [duplicate]
Possible Duplicates:
C/C++ testing framework (like JUnit for java) C++ unit testing framework
Which of these is a better option to choose for developing an Automated Test Framework which should be platform independent (Windows/Linux/Mac) ?
开发者_JS百科- CUnit
- Check
- Google test C++ Testing framework.
Or please feel free to suggest any other Testing Framework better than these satisfying the requirements.
Consider using Boost.Test:
http://www.boost.org/doc/libs/1_46_1/libs/test/doc/html/index.html
- cxxtest
- cpptest
CTest? It is part of CMake.
Are you looking for a unit testing framework? If yes, you should check out CPPUnit.
精彩评论