| 333 | } |
| 334 | |
| 335 | bool 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 | |
| 345 | bool UtestShell::shouldRun(const TestFilter* groupFilters, const TestFilter* nameFilters) const |
| 346 | { |
no test coverage detected