Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/jamesmartin/cpputestscons
- Owner: jamesmartin
- Created: 2010-02-21T04:26:12.000Z (almost 15 years ago)
- Default Branch: master
- Last Pushed: 2015-07-06T11:03:45.000Z (over 9 years ago)
- Last Synced: 2024-10-09T11:54:21.749Z (3 months ago)
- Language: Python
- Homepage:
- Size: 116 KB
- Stars: 9
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.markdown
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 testWrite tests, write code, make tests pass, refactor, repeat.