Home | History | Annotate | Download | only in tests

Lines Matching refs:Reporter

296 static void oneOff(skiatest::Reporter* reporter, const SkDConic& c1, const SkDConic& c2,
314 REPORTER_ASSERT(reporter, !coin || intersections.used() == 2);
323 REPORTER_ASSERT(reporter, xy1.approximatelyEqual(iPt));
324 REPORTER_ASSERT(reporter, xy2.approximatelyEqual(iPt));
325 REPORTER_ASSERT(reporter, xy1.approximatelyEqual(xy2));
327 reporter->bumpTestCount();
330 static void oneOff(skiatest::Reporter* reporter, int outer, int inner) {
333 oneOff(reporter, c1, c2, false);
336 static void oneOffTests(skiatest::Reporter* reporter) {
339 oneOff(reporter, outer, inner);
344 DEF_TEST(PathOpsConicIntersectionOneOff, reporter) {
345 oneOff(reporter, 0, 1);
348 DEF_TEST(PathOpsConicIntersection, reporter) {
349 oneOffTests(reporter);