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

Method findTestWithGroup

src/CppUTest/TestRegistry.cpp:263–272  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

261}
262
263UtestShell* TestRegistry::findTestWithGroup(const SimpleString& group)
264{
265 UtestShell* current = tests_;
266 while (current) {
267 if (current->getGroup() == group)
268 return current;
269 current = current->getNext();
270 }
271 return NULLPTR;
272}
273

Callers 2

TESTFunction · 0.80
TESTFunction · 0.80

Calls 2

getGroupMethod · 0.80
getNextMethod · 0.45

Tested by

no test coverage detected