| 31 | bool TestTestingFixture::lineOfCodeExecutedAfterCheck = false; |
| 32 | |
| 33 | TestTestingFixture::TestTestingFixture() |
| 34 | { |
| 35 | output_ = new StringBufferTestOutput(); |
| 36 | result_ = new TestResult(*output_); |
| 37 | genTest_ = new ExecFunctionTestShell(); |
| 38 | registry_ = new TestRegistry(); |
| 39 | ownsExecFunction_ = false; |
| 40 | |
| 41 | registry_->setCurrentRegistry(registry_); |
| 42 | registry_->addTest(genTest_); |
| 43 | |
| 44 | lineOfCodeExecutedAfterCheck = false; |
| 45 | } |
| 46 | |
| 47 | void TestTestingFixture::flushOutputAndResetResult() |
| 48 | { |
nothing calls this directly
no test coverage detected