VVS aims to provide a very small and simple framework for unit testing in C and C++. It consists of a single header file, vvs.h, which only utilize C standard libraries. Just include the file to your project. It will work without complex configuration and dependency. VVS is Beerware so that it is free to use and distribute.
- Homepage: https://github.com/sunglok/vvs
vvs.hincludes all functions and definitions of VVS.vvs_example.ccontains examples of using VVS.README.mdis this file which describes basic introduction of VVS.CMakeList.txtis a CMake script to buildvvs_example.c.
- In Microsoft Visual Studio, open a solution file,
msvs/vvs_example.sln, and run the solution. - In Linux and its neighbors, build
vvs_example.cwithmkdir build && cd build && cmake .. && make, and run it with./vvs_example
- Sunglok Choi (sunglok AT hanmail DOT net)