| 73 | } |
| 74 | |
| 75 | void TestTestingFixture::setTestFunction(void(*testFunction)()) |
| 76 | { |
| 77 | clearExecFunction(); |
| 78 | |
| 79 | genTest_->testFunction_ = new ExecFunctionWithoutParameters(testFunction); |
| 80 | ownsExecFunction_ = true; |
| 81 | } |
| 82 | |
| 83 | void TestTestingFixture::setTestFunction(ExecFunction* testFunction) |
| 84 | { |
no outgoing calls
no test coverage detected