//////////////////////////////////////////////////////////////////////////
| 64 | |
| 65 | /////////////////////////////////////////////////////////////////////////////// |
| 66 | void UnitTest::plan(int planned) { |
| 67 | _planned = planned; |
| 68 | _counter = 0; |
| 69 | _passed = 0; |
| 70 | _failed = 0; |
| 71 | _skipped = 0; |
| 72 | |
| 73 | std::cout << "1.." << _planned << '\n'; |
| 74 | } |
| 75 | |
| 76 | /////////////////////////////////////////////////////////////////////////////// |
| 77 | void UnitTest::planMore(int extra) { |
nothing calls this directly
no outgoing calls
no test coverage detected