Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/jamesmartin/cpputestscons

A starting point for TDDing in C++ using SCons & CppUTest
https://github.com/jamesmartin/cpputestscons

Last synced: 2 months ago
JSON representation

A starting point for TDDing in C++ using SCons & CppUTest

Awesome Lists containing this project

README

        

# CppUTestScons

A skeleton directory structure and files for a Test Driven C++ project, using CppUTest and Scons.

## Instructions

1. Install and build [CppUTest](http://cpputest.org)
1. Set the `CPP_U_TEST` environment variable to your CppUTest root
1. Install [scons](http:scons.org)
1. `git clone http://github.com/jamesmartin/CppUTestScons.git`
1. `cd CppUTestScons`
1. `scons check`
1. Modify/create new files in include, src and test

Write tests, write code, make tests pass, refactor, repeat.