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

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

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
```