| 89 | TestRegistry* registry; |
| 90 | |
| 91 | void setup() |
| 92 | { |
| 93 | firstPlugin = new DummyPlugin(GENERIC_PLUGIN); |
| 94 | secondPlugin = new DummyPluginWhichAcceptsParameters(GENERIC_PLUGIN2); |
| 95 | thirdPlugin = new DummyPlugin(GENERIC_PLUGIN3); |
| 96 | genFixture = new TestTestingFixture; |
| 97 | registry = genFixture->getRegistry(); |
| 98 | registry->installPlugin(firstPlugin); |
| 99 | sequenceNumber = 1; |
| 100 | } |
| 101 | |
| 102 | void teardown() |
| 103 | { |
nothing calls this directly
no test coverage detected