Home | History | Annotate | Download | only in tests

Lines Matching refs:fReporter

44 Test::Test() : fReporter(NULL), fPassed(true) {}
47 SkSafeUnref(fReporter);
51 SkRefCnt_SafeAssign(fReporter, r);
63 explicit LocalReporter(Reporter* reporterToMimic) : fReporter(reporterToMimic) {}
73 // Proxy down to fReporter. We assume these calls are threadsafe.
75 return fReporter->allowExtendedTest();
79 return fReporter->allowThreaded();
83 fReporter->bumpTestCount();
87 return fReporter->verbose();
91 Reporter* fReporter; // Unowned.
100 // Tell (likely shared) fReporter that this test has started.
101 fReporter->startTest(this);
105 // from other tests that might share fReporter.
106 LocalReporter local(fReporter);
111 // Now tell fReporter about any failures and wrap up.
113 fReporter->reportFailed(local.failure(i));
115 fReporter->endTest(this);