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

Method removePluginByName

src/CppUTest/TestRegistry.cpp:209–214  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

207}
208
209void TestRegistry::removePluginByName(const SimpleString& name)
210{
211 if (firstPlugin_->removePluginByName(name) == firstPlugin_) firstPlugin_ = firstPlugin_->getNext();
212 if (firstPlugin_->getName() == name) firstPlugin_ = firstPlugin_->getNext();
213 firstPlugin_->removePluginByName(name);
214}
215
216int TestRegistry::countPlugins()
217{

Callers

nothing calls this directly

Calls 2

getNextMethod · 0.45
getNameMethod · 0.45

Tested by

no test coverage detected