We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 33bef9b commit 8883480Copy full SHA for 8883480
2 files changed
README.md
@@ -21,7 +21,7 @@ $ cmake --build build --parallel
21
## Test
22
23
```bash
24
-$ build/bin/run_tests
+$ ctest --test-dir build
25
```
26
27
## Code coverage
test/CMakeLists.txt
@@ -4,3 +4,6 @@ add_executable(run_tests ${TEST_SRC_FILES})
4
target_link_libraries(run_tests PUBLIC
5
gtest_main
6
)
7
+
8
+include(GoogleTest)
9
+gtest_discover_tests(run_tests)
0 commit comments