Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/cui-liqiang/cpp_unit_test_template
this is a template project with makefile to handle compile and running tests
https://github.com/cui-liqiang/cpp_unit_test_template
Last synced: 16 days ago
JSON representation
this is a template project with makefile to handle compile and running tests
- Host: GitHub
- URL: https://github.com/cui-liqiang/cpp_unit_test_template
- Owner: cui-liqiang
- Created: 2013-01-06T15:26:09.000Z (almost 12 years ago)
- Default Branch: master
- Last Pushed: 2013-01-13T06:05:38.000Z (almost 12 years ago)
- Last Synced: 2024-07-31T22:58:45.498Z (3 months ago)
- Language: C
- Size: 645 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
cpp_unit_test_template
======================This is a template project with makefile to handle compiling, linking and running tests.
This project is using gtest 1.6.0. All needed .a and .h files are included in this project.
All you need to do is to write tests in format of "test/sample_test.cpp".Edit the following section in Makefile to customize your own project:
SOURCE_PATH =
TEST_PATH =
OUT_PATH =PROJECT =
Running "make all" to compile executables
Running "make test" to compile and run tests