# ci_test_cppunit **Repository Path**: ngtesting/ci_test_cppunit ## Basic Information - **Project Name**: ci_test_cppunit - **Description**: No description available - **Primary Language**: C++ - **License**: GPL-3.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 1 - **Created**: 2020-03-18 - **Last Updated**: 2024-01-24 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README CppUnitTest Description:How to use CppUnit Test Framwork in your project. =========== A sample test project for CppUnit with Ubuntu. Compile : g++ -L /usr/local/lib/libcppunit.a main.cpp MathTest.cpp -lcppunit -ldl -o MathTest Conditions: sudo apt-get install latest version of libcppunit. =========== Output test results to result.xml. Output run log to run.log. =========== Add common Makefile support. -Complie command: make Excute command" ./main -Clean command: make clean ===========