/cpp-with-tdd

unit test cpp with GTest

Primary LanguageC++

TDD in CPP

Use GTest to testing c++

Required

  • g++
  • cmake
  • GTest

Run With G++

g++ -o swap main.cpp # complies to binary
./swap # run

Run Test

cmake CMakeLists.txt # run first time only
make # build test
./runTests # run

Results

Test Failed

Test Failed

Test Pass

Test Pass