Home | History | Annotate | Download | only in tests

Lines Matching refs:Reporter

22 static void test_strokecubic(skiatest::Reporter* reporter) {
51 static void test_strokerect(skiatest::Reporter* reporter) {
74 REPORTER_ASSERT(reporter, equal(outer, fillPath.getBounds()));
78 REPORTER_ASSERT(reporter, fillPath.isNestedFillRects(nested) == isMiter);
82 REPORTER_ASSERT(reporter, equal(nested[0], outer));
83 REPORTER_ASSERT(reporter, equal(nested[1], inner));
88 static void test_strokerec_equality(skiatest::Reporter* reporter) {
92 REPORTER_ASSERT(reporter, s1.hasEqualEffect(s2));
96 REPORTER_ASSERT(reporter, !s1.hasEqualEffect(s2));
99 REPORTER_ASSERT(reporter, s1.hasEqualEffect(s2));
104 REPORTER_ASSERT(reporter, s1.hasEqualEffect(s2));
107 REPORTER_ASSERT(reporter, s1.hasEqualEffect(s2));
112 REPORTER_ASSERT(reporter, s1.hasEqualEffect(s2));
122 REPORTER_ASSERT(reporter, s1.hasEqualEffect(s2));
124 REPORTER_ASSERT(reporter, s1.hasEqualEffect(s2));
126 REPORTER_ASSERT(reporter, s1.hasEqualEffect(s2));
141 REPORTER_ASSERT(reporter, !s1.hasEqualEffect(s2));
144 REPORTER_ASSERT(reporter, !s1.hasEqualEffect(s2));
147 REPORTER_ASSERT(reporter, s1.hasEqualEffect(s2));
150 REPORTER_ASSERT(reporter, !s1.hasEqualEffect(s2));
152 REPORTER_ASSERT(reporter, !s1.hasEqualEffect(s2));
154 REPORTER_ASSERT(reporter, !s1.hasEqualEffect(s2));
159 REPORTER_ASSERT(reporter, s1.hasEqualEffect(s2));
163 DEF_TEST(Stroke, reporter) {
164 test_strokecubic(reporter);
165 test_strokerect(reporter);
166 test_strokerec_equality(reporter);