Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

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

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