Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagebash
linenumberstrue
../TDD-cpp/Calculator/ $: ./built/tst/test_operations

[==========] Running 3 tests from 1 test suite.
[----------] Global test environment set-up.
[----------] 3 tests from DivideOperation
[ RUN      ] DivideOperation.PositiveInput
[       OK ] DivideOperation.PositiveInput (0 ms)
[ RUN      ] DivideOperation.NegitiveInput
[       OK ] DivideOperation.NegitiveInput (0 ms)
[ RUN      ] DivideOperation.ZerioInput
[       OK ] DivideOperation.ZerioInput (0 ms)
[----------] 3 tests from DivideOperation (0 ms total)

[----------] Global test environment tear-down
[==========] 3 tests from 1 test suite ran. (0 ms total)
[  PASSED  ] 3 tests.

A properly configured, built and run project should return the result as above with information about the tests performed and their results. In this case, all test suites should pass.