https://github.com/codeintelligencetesting/workshop-simple-sut
Collection of example projects for a guided workshop
https://github.com/codeintelligencetesting/workshop-simple-sut
Last synced: 7 months ago
JSON representation
Collection of example projects for a guided workshop
- Host: GitHub
- URL: https://github.com/codeintelligencetesting/workshop-simple-sut
- Owner: CodeIntelligenceTesting
- Created: 2024-11-25T14:38:35.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2025-03-06T14:28:58.000Z (9 months ago)
- Last Synced: 2025-05-13T00:57:07.906Z (7 months ago)
- Language: C++
- Size: 8.79 KB
- Stars: 0
- Watchers: 5
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Project Description
This is a simple CMake project
## Build executable and test cases
```bash
cmake -S . -B build
cmake --build build
```
## Execute binary
```bash
./build/src/cmake_example 1 1 A
```
## Execute test cases
```bash
./build/test/explore_me_test
# or
cd build && ctest --verbose
```