Home | History | Annotate | Download | only in tests

Lines Matching refs:Reporter

14 static void standardTestCases(skiatest::Reporter* reporter) {
51 REPORTER_ASSERT(reporter, 0);
335 static void oneOffTest1(skiatest::Reporter* reporter, size_t outer, size_t inner) {
355 REPORTER_ASSERT(reporter, 0);
364 static void oneOffTests(skiatest::Reporter* reporter) {
367 oneOffTest1(reporter, outer, inner);
387 static void coincidentTestOne(skiatest::Reporter* reporter, int test1, int test2) {
398 REPORTER_ASSERT(reporter, intersections2.debugCoincidentUsed() >= 2);
399 REPORTER_ASSERT(reporter, intersections2.used() >= 2);
405 REPORTER_ASSERT(reporter, pt1.approximatelyEqual(pt2));
409 static void coincidentTest(skiatest::Reporter* reporter) {
411 coincidentTestOne(reporter, testIndex, testIndex + 1);
515 DEF_TEST(PathOpsQuadIntersectionOneOff, reporter) {
516 oneOffTest1(reporter, 0, 1);
519 DEF_TEST(PathOpsQuadIntersectionCoincidenceOneOff, reporter) {
520 coincidentTestOne(reporter, 0, 1);
523 DEF_TEST(PathOpsQuadIntersection, reporter) {
524 oneOffTests(reporter);
525 coincidentTest(reporter);
526 standardTestCases(reporter);
530 DEF_TEST(PathOpsQuadBinaryProfile, reporter) {
546 REPORTER_ASSERT(reporter, intersections.used() >= 0); // make sure code isn't tossed
559 REPORTER_ASSERT(reporter, intersections.used() >= 0); // make sure code isn't tossed