| 138 | } |
| 139 | |
| 140 | void Test::TestGroup::addTest(SampleCreator test, const char* name, size_t count) |
| 141 | { |
| 142 | PX_ASSERT(!isTest() && test); |
| 143 | TestGroup* testGroup = new TestGroup(test, name, count); |
| 144 | addGroup(testGroup); |
| 145 | } |
| 146 | |
| 147 | void Test::TestGroup::addGroup(TestGroup* group) |
| 148 | { |
no outgoing calls
no test coverage detected