| 186 | } |
| 187 | |
| 188 | Test::TestGroup* Test::TestGroup::getNextChild(TestGroup& current) |
| 189 | { |
| 190 | int nextIndex = getChildIndex(current) + 1; |
| 191 | if (nextIndex >= int(mChildren.size())) |
| 192 | return NULL; |
| 193 | |
| 194 | return mChildren[nextIndex]; |
| 195 | } |
| 196 | |
| 197 | Test::TestGroup* Test::TestGroup::getPreviousChild(TestGroup& current) |
| 198 | { |
no test coverage detected