| 30 | TestResult* result_; |
| 31 | |
| 32 | void setup() |
| 33 | { |
| 34 | myRegistry_ = new TestRegistry(); |
| 35 | plugin_ = new SetPointerPlugin("TestSetPlugin"); |
| 36 | myRegistry_->setCurrentRegistry(myRegistry_); |
| 37 | myRegistry_->installPlugin(plugin_); |
| 38 | output_ = new StringBufferTestOutput(); |
| 39 | result_ = new TestResult(*output_); |
| 40 | } |
| 41 | |
| 42 | void teardown() |
| 43 | { |
nothing calls this directly
no test coverage detected