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

Method match

src/CppUTest/Utest.cpp:335–343  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

333}
334
335bool UtestShell::match(const char* target, const TestFilter* filters) const
336{
337 if(filters == NULLPTR) return true;
338
339 for(; filters != NULLPTR; filters = filters->getNext())
340 if(filters->match(target)) return true;
341
342 return false;
343}
344
345bool UtestShell::shouldRun(const TestFilter* groupFilters, const TestFilter* nameFilters) const
346{

Callers 3

demote_groupMethod · 0.45
extern_c_line?Method · 0.45
TESTFunction · 0.45

Calls 1

getNextMethod · 0.45

Tested by

no test coverage detected