Lines Matching defs:TestPlugin
104 class TestPlugin : public ObjectLinkingLayer::Plugin {
141 ObjLinkingLayer.addPlugin(std::make_unique<TestPlugin>());
160 class TestPlugin : public ObjectLinkingLayer::Plugin {
162 ~TestPlugin() { EXPECT_TRUE(ErrorReported); }
194 ObjLinkingLayer.addPlugin(std::make_unique<TestPlugin>());
211 class TestPlugin : public ObjectLinkingLayer::Plugin {
213 TestPlugin(size_t &ActivationCount, bool &PluginDestroyed)
216 ~TestPlugin() { PluginDestroyed = true; }
225 ADD_FAILURE() << "TestPlugin::notifyFailed called unexpectedly";
244 auto P = std::make_shared<TestPlugin>(ActivationCount, PluginDestroyed);