First, about CPPUnit
CPPUnit is a unit test framework that is transplanted from the famous JUnit frame for C . The current version is 1.10.2.
Similar to most open source projects, after CPPUnit download, the first time the source code is compiled (installed), in the directory of the download package, install_win.txt detailed explains how to compile on Windows. If there is Visual Studio 6.0 or more in the machine, you can open the project file directly in the source catalog, and then compile them directly using the integrated environment.
In CPPUnit's lib directory, including these files:
CPPUnit runtime library for writing unit test code.
CPPUNITD.LIB: Static compile library file for CPPUnit Runtime Library. CPPUNITD_DLL.DLL: CPPUnit Runtime Library Compile Dynamic Link Library file. CPPUNITD_DLL.LIB: The import library file for the CPPUnit runtime library dynamic link library.
Execute a program file for unit testing to perform a composed unit test code.
DLLPLUGINTESTERD_DLL.EXE: Command line executables, specify the compiled unit test code dynamic link library, and then run and output. Typical usage: TestPluginRunnerd_dll a.dll -t testpluginrunnerd.exe: GUI executable, you can open any compiled unit test code dynamic link library, specify the case you need to test, test and test the test results, if no problem, progress bar For green, if there is a problem, the progress bar is red.
Others: I don't know the use temporarily. ^ _ ^