Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/diasbruno/oftest
automated testing for openFrameworks.
https://github.com/diasbruno/oftest
Last synced: 9 days ago
JSON representation
automated testing for openFrameworks.
- Host: GitHub
- URL: https://github.com/diasbruno/oftest
- Owner: diasbruno
- Created: 2013-05-14T20:05:49.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2013-08-11T14:59:51.000Z (about 11 years ago)
- Last Synced: 2023-03-15T09:40:32.965Z (over 1 year ago)
- Language: C++
- Homepage:
- Size: 3.99 MB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
oftest
======automated testing for openFrameworks.
- how it works:
oftest/master: follows oftest/with-make/master.
oftest/with-rake/master: will be used to run on travis-ci.clone oftest in the root of your openFrameworks folder.
```
cd your_openFrameworks_root
git clone https://github.com/diasbruno/oftest.git tests
```compile the openFrameworks lib, and then...
- compiling and running tests
. all tests.
```
make
make test
```. a specific test. (list of tests)
```
make test["ofColor ofImage of..."]
./run_test ofColor ofImage of... # life is short.
```- create a new test
. this will create src/ofFileUtils.cpp.
```
./create_test ofFileUtils
```