| 261 | } |
| 262 | |
| 263 | UtestShell* 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 |