fTestCount
fTestCount = MAX_VECS;
fTestVecs, &fTestCount, 0);
fTestCount = 0;
if (fTestCount > 0) {
for (uint32 i = 0; i < fTestCount; i++) {
uint32 fTestCount;
for (int32 i = 0; i < fTestCount; i++)
return fTestCount;
return index >= 0 && index < fTestCount ? fTests[index] : NULL;
Test** tests = new(std::nothrow) Test*[fTestCount + 1];
if (fTestCount > 0)
memcpy(tests, fTests, sizeof(Test*) * fTestCount);
fTests[fTestCount++] = test;
int32 fTestCount;