Lines Matching refs:reporter
35 DEF_TEST(PathOpsTightBoundsLines, reporter) {
36 initializeTests(reporter, "tightBoundsLines");
37 PathOpsThreadedTestRunner testRunner(reporter);
38 int outerCount = reporter->allowExtendedTest() ? 100 : 1;
110 DEF_TEST(PathOpsTightBoundsQuads, reporter) {
111 initializeTests(reporter, "tightBoundsQuads");
112 PathOpsThreadedTestRunner testRunner(reporter);
113 int outerCount = reporter->allowExtendedTest() ? 100 : 1;
123 DEF_TEST(PathOpsTightBoundsMove, reporter) {
135 REPORTER_ASSERT(reporter, TightBounds(path, &tight));
136 REPORTER_ASSERT(reporter, bounds == tight);
139 DEF_TEST(PathOpsTightBoundsMoveOne, reporter) {
144 REPORTER_ASSERT(reporter, TightBounds(path, &tight));
145 REPORTER_ASSERT(reporter, bounds == tight);
148 DEF_TEST(PathOpsTightBoundsMoveTwo, reporter) {
154 REPORTER_ASSERT(reporter, TightBounds(path, &tight));
155 REPORTER_ASSERT(reporter, bounds == tight);
158 DEF_TEST(PathOpsTightBoundsTiny, reporter) {
164 REPORTER_ASSERT(reporter, TightBounds(path, &tight));
166 REPORTER_ASSERT(reporter, bounds != tight);
167 REPORTER_ASSERT(reporter, moveBounds == tight);
170 DEF_TEST(PathOpsTightBoundsWellBehaved, reporter) {
176 REPORTER_ASSERT(reporter, TightBounds(path, &tight));
177 REPORTER_ASSERT(reporter, bounds == tight);
180 DEF_TEST(PathOpsTightBoundsIllBehaved, reporter) {
186 REPORTER_ASSERT(reporter, TightBounds(path, &tight));
187 REPORTER_ASSERT(reporter, bounds != tight);
190 DEF_TEST(PathOpsTightBoundsIllBehavedScaled, reporter) {
196 REPORTER_ASSERT(reporter, TightBounds(path, &tight));
197 REPORTER_ASSERT(reporter, bounds != tight);
198 REPORTER_ASSERT(reporter, tight.right() == 1048576);
199 REPORTER_ASSERT(reporter, tight.bottom() == 1048576);