Home | History | Annotate | Download | only in tests

Lines Matching full:test

2 #include "Test.h"
20 Test* next() {
24 Test* test = fact(NULL);
25 test->setReporter(fReporter);
26 return test;
59 virtual void onStart(Test* test) {
60 this->dumpState(test, kStarting_State);
67 virtual void onEnd(Test* test) {
68 this->dumpState(test, this->getCurrSuccess() ?
78 void dumpState(Test* test, State state) {
80 SkDebugf("INSTRUMENTATION_STATUS: test=%s\n", test->getName());
87 SkDebugf("[%d/%d] %s...\n", fIndex+1, fTotal, test->getName());
110 Test* test;
115 while ((test = iter.next()) != NULL) {
117 successCount += test->run();
118 SkDELETE(test);