https://github.com/bast/pfunit-demo
Unit test demo using pFUnit.
https://github.com/bast/pfunit-demo
Last synced: 4 months ago
JSON representation
Unit test demo using pFUnit.
- Host: GitHub
- URL: https://github.com/bast/pfunit-demo
- Owner: bast
- License: bsd-3-clause
- Created: 2014-11-13T14:35:47.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2016-11-22T16:12:16.000Z (over 9 years ago)
- Last Synced: 2025-01-28T02:42:35.716Z (over 1 year ago)
- Language: CMake
- Size: 23.4 KB
- Stars: 17
- Watchers: 7
- Forks: 4
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[](https://travis-ci.org/bast/pfunit-demo/builds)
[](https://coveralls.io/r/bast/pfunit-demo?branch=master)
[](../master/LICENSE)
# pfunit-demo
Fortran unit test demo using [pFUnit](http://pfunit.sourceforge.net) deployed to
[Travis-CI](https://travis-ci.org/bast/pfunit-demo/builds) with test coverage
deployed to [Coveralls](https://coveralls.io/r/bast/pfunit-demo).
- [Build and test history](https://travis-ci.org/bast/pfunit-demo/builds)
- [Code coverage](https://coveralls.io/r/bast/pfunit-demo)
- Licensed under [BSD-3](../master/LICENSE)
## How to build this demo
```
git clone --recursive https://github.com/bast/pfunit-demo.git
cd pfunit-demo
mkdir build
cd build
cmake ..
make -j
make test
```
To get more output when tests fail:
```
CTEST_OUTPUT_ON_FAILURE=1 make test
```
## Contributors
- Guillaume Jacquenot (added possibility to use a local install for pFUnit)