| 250 | } |
| 251 | |
| 252 | UtestShell* TestRegistry::findTestWithName(const SimpleString& name) |
| 253 | { |
| 254 | UtestShell* current = tests_; |
| 255 | while (current) { |
| 256 | if (current->getName() == name) |
| 257 | return current; |
| 258 | current = current->getNext(); |
| 259 | } |
| 260 | return NULLPTR; |
| 261 | } |
| 262 | |
| 263 | UtestShell* TestRegistry::findTestWithGroup(const SimpleString& group) |
| 264 | { |