MCPcopy Create free account
hub / github.com/cpputest/cpputest / removePluginByName

Method removePluginByName

src/CppUTest/TestPlugin.cpp:91–99  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

89 return next_;
90}
91TestPlugin* TestPlugin::removePluginByName(const SimpleString& name)
92{
93 TestPlugin* removed = NULLPTR;
94 if (next_ && next_->getName() == name) {
95 removed = next_;
96 next_ = next_->next_;
97 }
98 return removed;
99}
100
101void TestPlugin::disable()
102{

Callers 5

RunAllTestsMethod · 0.45
runAllTestsMainMethod · 0.45
TESTFunction · 0.45
TESTFunction · 0.45
TESTFunction · 0.45

Calls 1

getNameMethod · 0.45

Tested by

no test coverage detected