| 178 | } |
| 179 | |
| 180 | bool TestRegistry::testShouldRun(UtestShell* test, TestResult& result) |
| 181 | { |
| 182 | if (test->shouldRun(groupFilters_, nameFilters_)) return true; |
| 183 | else { |
| 184 | result.countFilteredOut(); |
| 185 | return false; |
| 186 | } |
| 187 | } |
| 188 | |
| 189 | void TestRegistry::resetPlugins() |
| 190 | { |
nothing calls this directly
no test coverage detected