| 242 | } |
| 243 | |
| 244 | UtestShell* TestRegistry::getTestWithNext(UtestShell* test) |
| 245 | { |
| 246 | UtestShell* current = tests_; |
| 247 | while (current && current->getNext() != test) |
| 248 | current = current->getNext(); |
| 249 | return current; |
| 250 | } |
| 251 | |
| 252 | UtestShell* TestRegistry::findTestWithName(const SimpleString& name) |
| 253 | { |
no test coverage detected