diff options
Diffstat (limited to 'README.md')
| -rw-r--r-- | README.md | 20 |
1 files changed, 19 insertions, 1 deletions
@@ -19,13 +19,31 @@ This will generate the following files: ## Testing -Unit tests can be run by performing: +Functional tests can be run with: ``` cd test/ ./runtests.sh ``` +Unit tests depend on `gtest` and must be explicitly built: + +``` +cmake . -DTESTING=ON +``` + +They can be run either via CMake: + +``` +ctest +``` + +or by directly running the unit tests executable, which provides more verbose output: + +``` +./bin/unittest +``` + ## Installation Installing can be performed with: |
