Home | History | Annotate | Download | only in tests

Lines Matching refs:Reporter

40 static void failOne(skiatest::Reporter* reporter, int index) {
63 REPORTER_ASSERT(reporter, !success);
64 REPORTER_ASSERT(reporter, result.isEmpty());
65 REPORTER_ASSERT(reporter, result.getFillType() == SkPath::kWinding_FillType);
66 reporter->bumpTestCount();
69 static void dontFailOne(skiatest::Reporter* reporter, int index) {
89 REPORTER_ASSERT(reporter, success);
90 REPORTER_ASSERT(reporter, result.getFillType() != SkPath::kWinding_FillType);
91 reporter->bumpTestCount();
94 static void PathOpsSimplifyFailTest(skiatest::Reporter* reporter) {
96 failOne(reporter, index);
99 dontFailOne(reporter, index);
103 static void PathOpsSimplifyFailOneTest(skiatest::Reporter* reporter) {
105 failOne(reporter, index);
108 static void PathOpsSimplifyDontFailOneTest(skiatest::Reporter* reporter) {
110 dontFailOne(reporter, index);