/cpp-tesing-examples

Examples for article on Unit testing with C++

Primary LanguageC++

This project contains examples for my article Test-driven development and unit testing with examples in C++

To work with this project you need to have Boost 1.37 (or higher) installed on your machine, together with Google C++ Mocking framework.

To compile project you need to execute following commands: mkdir Debug cd Debug cmake .. # to configure project make # to compile code make test # to execute all tests