This repo implements following progress of the book "Test Driven Development: By Example" by Kent Beck[link], using C++ and gtest. Each branch in the repo corresponds to each chapter in the book.
- Part1
- Part2
- git hook
The structure of the CMake highly referenced from a great project, Modern CMake[link]
To configure:
cmake -S . -B build
To build:
cmake --build build
To test
cmake --build build --target test ARGS=-V