Lines Matching refs:TestCase

516 class TestCase {  class
518 TestCase(const Geo& geo, const SkPaint& paint, skiatest::Reporter* r, in TestCase() function in __anon392b385c0111::TestCase
525 TestCase(skiatest::Reporter* r, ShapeArgs... shapeArgs) : fBase(new GrShape(shapeArgs...)) { in TestCase() function in __anon392b385c0111::TestCase
529 TestCase(const GrShape& shape, skiatest::Reporter* r, SkScalar scale = SK_Scalar1) in TestCase() function in __anon392b385c0111::TestCase
549 void compare(skiatest::Reporter*, const TestCase& that, ComparisonExpecation) const;
694 void TestCase::testExpectations(skiatest::Reporter* reporter, SelfExpectations expectations) const { in testExpectations()
720 void TestCase::compare(skiatest::Reporter* r, const TestCase& that, in compare()
763 static std::unique_ptr<TestCase> make_TestCase(Args&&... args) { in make_TestCase()
764 return std::unique_ptr<TestCase>{ new TestCase(std::forward<Args>(args)...) }; in make_TestCase()
770 TestCase::SelfExpectations expectations; in test_basic()
773 TestCase fillCase(geo, fill, reporter); in test_basic()
780 ->compare(reporter, fillCase, TestCase::kAllSame_ComparisonExpecation); in test_basic()
787 TestCase stroke2RoundBevelCase(geo, stroke2RoundBevel, reporter); in test_basic()
793 ->compare(reporter, stroke2RoundBevelCase, TestCase::kAllSame_ComparisonExpecation); in test_basic()
797 TestCase stroke2RoundBevelDashCase(geo, stroke2RoundBevelDash, reporter); in test_basic()
803 ->compare(reporter, stroke2RoundBevelDashCase, TestCase::kAllSame_ComparisonExpecation); in test_basic()
807 TestCase::kAllDifferent_ComparisonExpecation); in test_basic()
809 TestCase::kAllDifferent_ComparisonExpecation); in test_basic()
812 TestCase::kSameUpToStroke_ComparisonExpecation); in test_basic()
814 TestCase::kSameUpToPE_ComparisonExpecation); in test_basic()
818 TestCase::kAllDifferent_ComparisonExpecation); in test_basic()
821 TestCase::kSameUpToPE_ComparisonExpecation); in test_basic()
827 TestCase stroke2RoundBevelAndFillCase(geo, stroke2RoundBevelAndFill, reporter); in test_basic()
833 reporter, stroke2RoundBevelAndFillCase, TestCase::kAllSame_ComparisonExpecation); in test_basic()
837 TestCase stroke2RoundBevelAndFillDashCase(geo, stroke2RoundBevelAndFillDash, reporter); in test_basic()
843 reporter, stroke2RoundBevelAndFillDashCase, TestCase::kAllSame_ComparisonExpecation); in test_basic()
845 TestCase::kAllSame_ComparisonExpecation); in test_basic()
850 TestCase hairlineCase(geo, hairline, reporter); in test_basic()
854 hairlineCase.compare(reporter, fillCase, TestCase::kAllDifferent_ComparisonExpecation); in test_basic()
856 hairlineCase.compare(reporter, fillCase, TestCase::kAllSame_ComparisonExpecation); in test_basic()
871 TestCase fillCase1(geo, fill, reporter, kS1); in test_scale()
872 TestCase fillCase2(geo, fill, reporter, kS2); in test_scale()
874 fillCase1.compare(reporter, fillCase2, TestCase::kAllSame_ComparisonExpecation); in test_scale()
879 TestCase hairlineCase1(geo, hairline, reporter, kS1); in test_scale()
880 TestCase hairlineCase2(geo, hairline, reporter, kS2); in test_scale()
882 hairlineCase1.compare(reporter, hairlineCase2, TestCase::kAllSame_ComparisonExpecation); in test_scale()
887 TestCase strokeCase1(geo, stroke, reporter, kS1); in test_scale()
888 TestCase strokeCase2(geo, stroke, reporter, kS2); in test_scale()
892 strokeCase1.compare(reporter, strokeCase2, TestCase::kAllSame_ComparisonExpecation); in test_scale()
894 strokeCase1.compare(reporter, strokeCase2, TestCase::kSameUpToStroke_ComparisonExpecation); in test_scale()
899 TestCase strokeDashCase1(geo, strokeDash, reporter, kS1); in test_scale()
900 TestCase strokeDashCase2(geo, strokeDash, reporter, kS2); in test_scale()
903 TestCase::kSameUpToPE_ComparisonExpecation); in test_scale()
908 TestCase strokeAndFillCase1(geo, strokeAndFill, reporter, kS1); in test_scale()
909 TestCase strokeAndFillCase2(geo, strokeAndFill, reporter, kS2); in test_scale()
913 TestCase strokeAndFillDashCase1(geo, strokeAndFillDash, reporter, kS1); in test_scale()
914 TestCase strokeAndFillDashCase2(geo, strokeAndFillDash, reporter, kS2); in test_scale()
921 TestCase::kAllSame_ComparisonExpecation); in test_scale()
923 TestCase::kAllSame_ComparisonExpecation); in test_scale()
926 TestCase::kSameUpToStroke_ComparisonExpecation); in test_scale()
929 TestCase::kAllSame_ComparisonExpecation); in test_scale()
931 TestCase::kAllSame_ComparisonExpecation); in test_scale()
950 TestCase strokeACase(geo, strokeA, reporter); in test_stroke_param_impl()
951 TestCase strokeBCase(geo, strokeB, reporter); in test_stroke_param_impl()
957 TestCase::kAllDifferent_ComparisonExpecation); in test_stroke_param_impl()
960 TestCase::kSameUpToStroke_ComparisonExpecation); in test_stroke_param_impl()
963 strokeACase.compare(reporter, strokeBCase, TestCase::kAllSame_ComparisonExpecation); in test_stroke_param_impl()
970 TestCase strokeAndFillACase(geo, strokeAndFillA, reporter); in test_stroke_param_impl()
971 TestCase strokeAndFillBCase(geo, strokeAndFillB, reporter); in test_stroke_param_impl()
978 TestCase::kAllDifferent_ComparisonExpecation); in test_stroke_param_impl()
981 TestCase::kSameUpToStroke_ComparisonExpecation); in test_stroke_param_impl()
985 TestCase::kAllSame_ComparisonExpecation); in test_stroke_param_impl()
992 TestCase fillACase(geo, fillA, reporter); in test_stroke_param_impl()
993 TestCase fillBCase(geo, fillB, reporter); in test_stroke_param_impl()
994 fillACase.compare(reporter, fillBCase, TestCase::kAllSame_ComparisonExpecation); in test_stroke_param_impl()
1001 TestCase dashACase(geo, dashA, reporter); in test_stroke_param_impl()
1002 TestCase dashBCase(geo, dashB, reporter); in test_stroke_param_impl()
1004 dashACase.compare(reporter, dashBCase, TestCase::kSameUpToStroke_ComparisonExpecation); in test_stroke_param_impl()
1006 dashACase.compare(reporter, dashBCase, TestCase::kAllSame_ComparisonExpecation); in test_stroke_param_impl()
1100 TestCase dashFillCase(geo, dashFill, reporter); in test_dash_fill()
1102 TestCase fillCase(geo, SkPaint(), reporter); in test_dash_fill()
1103 dashFillCase.compare(reporter, fillCase, TestCase::kAllSame_ComparisonExpecation); in test_dash_fill()
1121 TestCase fillCase(geo, fill, reporter); in test_null_dash()
1122 TestCase strokeCase(geo, stroke, reporter); in test_null_dash()
1123 TestCase dashCase(geo, dash, reporter); in test_null_dash()
1124 TestCase nullDashCase(geo, nullDash, reporter); in test_null_dash()
1127 nullDashCase.compare(reporter, strokeCase, TestCase::kAllSame_ComparisonExpecation); in test_null_dash()
1131 nullDashCase.compare(reporter, fillCase, TestCase::kAllDifferent_ComparisonExpecation); in test_null_dash()
1133 nullDashCase.compare(reporter, fillCase, TestCase::kSameUpToStroke_ComparisonExpecation); in test_null_dash()
1137 nullDashCase.compare(reporter, dashCase, TestCase::kAllDifferent_ComparisonExpecation); in test_null_dash()
1139 nullDashCase.compare(reporter, dashCase, TestCase::kSameUpToPE_ComparisonExpecation); in test_null_dash()
1176 TestCase fillGeoCase(geo, fill, reporter); in test_path_effect_makes_rrect()
1180 TestCase geoPECase(geo, pe, reporter); in test_path_effect_makes_rrect()
1186 TestCase geoPEStrokeCase(geo, peStroke, reporter); in test_path_effect_makes_rrect()
1191 fillGeoCase.compare(reporter, geoPECase, TestCase::kAllDifferent_ComparisonExpecation); in test_path_effect_makes_rrect()
1193 TestCase::kAllDifferent_ComparisonExpecation); in test_path_effect_makes_rrect()
1195 fillGeoCase.compare(reporter, geoPECase, TestCase::kSameUpToPE_ComparisonExpecation); in test_path_effect_makes_rrect()
1196 fillGeoCase.compare(reporter, geoPEStrokeCase, TestCase::kSameUpToPE_ComparisonExpecation); in test_path_effect_makes_rrect()
1199 TestCase::kSameUpToStroke_ComparisonExpecation); in test_path_effect_makes_rrect()
1201 TestCase rrectFillCase(reporter, RRectPathEffect::RRect(), fill); in test_path_effect_makes_rrect()
1204 TestCase rrectStrokeCase(reporter, RRectPathEffect::RRect(), stroke); in test_path_effect_makes_rrect()
1268 TestCase geoPEStrokeCase(geo, peStroke, reporter); in test_unknown_path_effect()
1269 TestCase::SelfExpectations expectations; in test_unknown_path_effect()
1303 TestCase peCase(geo, pe, reporter); in test_make_hairline_path_effect()
1342 TestCase volatileCase(reporter, vPath, dashAndStroke); in test_volatile_path()
1348 TestCase nonVolatileCase(reporter, geo.path(), dashAndStroke); in test_volatile_path()
1349 volatileCase.compare(reporter, nonVolatileCase, TestCase::kAllSame_ComparisonExpecation); in test_volatile_path()
1403 TestCase geoPECase(geo, pe, reporter); in test_path_effect_makes_empty_shape()
1416 TestCase geoPEStrokeCase(geo, peStroke, reporter); in test_path_effect_makes_empty_shape()
1426 TestCase geoPEInvertCase(geo, pe, reporter); in test_path_effect_makes_empty_shape()
1436 TestCase geoPEInvertStrokeCase(geo, peStroke, reporter); in test_path_effect_makes_empty_shape()
1466 TestCase fillCase(geo, fill, reporter); in test_path_effect_fails()
1470 TestCase peCase(geo, pe, reporter); in test_path_effect_fails()
1475 TestCase strokeCase(geo, stroke, reporter); in test_path_effect_fails()
1479 TestCase peStrokeCase(geo, peStroke, reporter); in test_path_effect_fails()
1512 TestCase fillEmptyCase(reporter, emptyPath, fill); in DEF_TEST()
1519 TestCase fillInvertedEmptyCase(reporter, invertedEmptyPath, fill); in DEF_TEST()
1531 TestCase::SelfExpectations expectations; in DEF_TEST()
1544 TestCase strokeEmptyCase(reporter, emptyPath, stroke); in DEF_TEST()
1545 strokeEmptyCase.compare(reporter, fillEmptyCase, TestCase::kAllSame_ComparisonExpecation); in DEF_TEST()
1546 TestCase strokeInvertedEmptyCase(reporter, invertedEmptyPath, stroke); in DEF_TEST()
1548 TestCase::kAllSame_ComparisonExpecation); in DEF_TEST()
1555 TestCase dashAndStrokeEmptyCase(reporter, emptyPath, dashAndStroke); in DEF_TEST()
1557 TestCase::kAllSame_ComparisonExpecation); in DEF_TEST()
1558 TestCase dashAndStrokeInvertexEmptyCase(reporter, invertedEmptyPath, dashAndStroke); in DEF_TEST()
1561 TestCase::kAllSame_ComparisonExpecation); in DEF_TEST()
1569 TestCase fillEmptyRRectCase(reporter, emptyRRect, fill); in DEF_TEST()
1570 fillEmptyRRectCase.compare(reporter, fillEmptyCase, TestCase::kAllSame_ComparisonExpecation); in DEF_TEST()
1572 TestCase strokeEmptyRRectCase(reporter, emptyRRect, stroke); in DEF_TEST()
1574 TestCase::kAllDifferent_ComparisonExpecation); in DEF_TEST()
1576 TestCase dashAndStrokeEmptyRRectCase(reporter, emptyRRect, dashAndStroke); in DEF_TEST()
1578 TestCase::kAllSame_ComparisonExpecation); in DEF_TEST()
1583 TestCase fillInvertedEmptyRRectCase(reporter, emptyRRect, kDir, kStart, true, GrStyle(fill)); in DEF_TEST()
1585 TestCase::kAllSame_ComparisonExpecation); in DEF_TEST()
1587 TestCase strokeInvertedEmptyRRectCase(reporter, emptyRRect, kDir, kStart, true, in DEF_TEST()
1590 TestCase::kAllDifferent_ComparisonExpecation); in DEF_TEST()
1592 TestCase dashAndStrokeEmptyInvertedRRectCase(reporter, emptyRRect, kDir, kStart, true, in DEF_TEST()
1595 TestCase::kAllSame_ComparisonExpecation); in DEF_TEST()
1599 TestCase fillEmptyRectCase(reporter, emptyRect, fill); in DEF_TEST()
1600 fillEmptyRectCase.compare(reporter, fillEmptyCase, TestCase::kAllSame_ComparisonExpecation); in DEF_TEST()
1602 TestCase dashAndStrokeEmptyRectCase(reporter, emptyRect, dashAndStroke); in DEF_TEST()
1604 TestCase::kAllSame_ComparisonExpecation); in DEF_TEST()
1606 TestCase dashAndStrokeEmptyInvertedRectCase(reporter, SkRRect::MakeRect(emptyRect), kDir, in DEF_TEST()
1610 TestCase::kAllSame_ComparisonExpecation); in DEF_TEST()
1810 TestCase a(fillCase, r); in test_rrect()
1811 TestCase b(inverted ? exampleInvFillCase : exampleFillCase, r); in test_rrect()
1812 TestCase c(strokeAndFillCase, r); in test_rrect()
1813 TestCase d(inverted ? exampleInvStrokeAndFillCase in test_rrect()
1815 a.compare(r, b, TestCase::kAllSame_ComparisonExpecation); in test_rrect()
1816 c.compare(r, d, TestCase::kAllSame_ComparisonExpecation); in test_rrect()
1822 TestCase e(strokeCase, r); in test_rrect()
1823 TestCase g(hairlineCase, r); in test_rrect()
1828 TestCase f(exampleStrokeCase, r); in test_rrect()
1829 TestCase h(exampleHairlineCase, r); in test_rrect()
1850 e.compare(r, f, TestCase::kSameUpToPE_ComparisonExpecation); in test_rrect()
1851 g.compare(r, h, TestCase::kSameUpToPE_ComparisonExpecation); in test_rrect()
1853 e.compare(r, f, TestCase::kAllDifferent_ComparisonExpecation); in test_rrect()
1854 g.compare(r, h, TestCase::kAllDifferent_ComparisonExpecation); in test_rrect()
1857 TestCase f(inverted ? exampleInvStrokeCase : exampleStrokeCase, r); in test_rrect()
1858 TestCase h(inverted ? exampleInvHairlineCase : exampleHairlineCase, r); in test_rrect()
1861 e.compare(r, f, TestCase::kAllSame_ComparisonExpecation); in test_rrect()
1862 g.compare(r, h, TestCase::kAllSame_ComparisonExpecation); in test_rrect()
1900 TestCase fillAB(r, lineAB, fill); in DEF_TEST()
1901 TestCase fillEmpty(r, SkPath(), fill); in DEF_TEST()
1902 fillAB.compare(r, fillEmpty, TestCase::kAllSame_ComparisonExpecation); in DEF_TEST()
1907 TestCase fillEmptyInverted(r, path, fill); in DEF_TEST()
1908 TestCase fillABInverted(r, invLineAB, fill); in DEF_TEST()
1909 fillABInverted.compare(r, fillEmptyInverted, TestCase::kAllSame_ComparisonExpecation); in DEF_TEST()
1912 TestCase strokeAB(r, lineAB, stroke); in DEF_TEST()
1913 TestCase strokeBA(r, lineBA, stroke); in DEF_TEST()
1914 TestCase strokeAC(r, lineAC, stroke); in DEF_TEST()
1916 TestCase hairlineAB(r, lineAB, hairline); in DEF_TEST()
1917 TestCase hairlineBA(r, lineBA, hairline); in DEF_TEST()
1918 TestCase hairlineAC(r, lineAC, hairline); in DEF_TEST()
1920 TestCase dashAB(r, lineAB, dash); in DEF_TEST()
1921 TestCase dashBA(r, lineBA, dash); in DEF_TEST()
1922 TestCase dashAC(r, lineAC, dash); in DEF_TEST()
1924 strokeAB.compare(r, fillAB, TestCase::kAllDifferent_ComparisonExpecation); in DEF_TEST()
1926 strokeAB.compare(r, strokeBA, TestCase::kAllSame_ComparisonExpecation); in DEF_TEST()
1927 strokeAB.compare(r, strokeAC, TestCase::kAllDifferent_ComparisonExpecation); in DEF_TEST()
1929 hairlineAB.compare(r, hairlineBA, TestCase::kAllSame_ComparisonExpecation); in DEF_TEST()
1930 hairlineAB.compare(r, hairlineAC, TestCase::kAllDifferent_ComparisonExpecation); in DEF_TEST()
1932 dashAB.compare(r, dashBA, TestCase::kAllDifferent_ComparisonExpecation); in DEF_TEST()
1933 dashAB.compare(r, dashAC, TestCase::kAllDifferent_ComparisonExpecation); in DEF_TEST()
1935 strokeAB.compare(r, hairlineAB, TestCase::kSameUpToStroke_ComparisonExpecation); in DEF_TEST()
1957 TestCase::kSameUpToPE_ComparisonExpecation); in DEF_TEST()
1968 TestCase strokeInvAB(r, invLineAB, stroke); in DEF_TEST()
1969 TestCase hairlineInvAB(r, invLineAB, hairline); in DEF_TEST()
1970 TestCase dashInvAB(r, invLineAB, dash); in DEF_TEST()
1971 strokeInvAB.compare(r, strokeAB, TestCase::kAllDifferent_ComparisonExpecation); in DEF_TEST()
1972 hairlineInvAB.compare(r, hairlineAB, TestCase::kAllDifferent_ComparisonExpecation); in DEF_TEST()
1974 dashInvAB.compare(r, dashAB, TestCase::kAllSame_ComparisonExpecation); in DEF_TEST()
2020 r, TestCase(r, SkRect::MakeLTRB(2, 4, 6, 5), fill), in DEF_TEST()
2021 TestCase::kAllSame_ComparisonExpecation); in DEF_TEST()
2024 r, TestCase(r, SkRect::MakeLTRB(2, 2, 6, 7), fill), in DEF_TEST()
2025 TestCase::kAllSame_ComparisonExpecation); in DEF_TEST()
2028 TestCase(r, SkRRect::MakeRectXY(SkRect::MakeLTRB(2, 2, 6, 7), 2, 2), fill), in DEF_TEST()
2029 TestCase::kAllSame_ComparisonExpecation); in DEF_TEST()
2037 r, TestCase(r, SkRect::MakeLTRB(4, 2, 5, 6), fill), in DEF_TEST()
2038 TestCase::kAllSame_ComparisonExpecation); in DEF_TEST()
2040 r, TestCase(r, SkRect::MakeLTRB(2, 2, 7, 6), fill), in DEF_TEST()
2041 TestCase::kAllSame_ComparisonExpecation); in DEF_TEST()
2043 r, TestCase(r, SkRRect::MakeRectXY(SkRect::MakeLTRB(2, 2, 7, 6), 2, 2), fill), in DEF_TEST()
2044 TestCase::kAllSame_ComparisonExpecation); in DEF_TEST()
2052 r, TestCase(r, SkRect::MakeEmpty(), fill), in DEF_TEST()
2053 TestCase::kAllSame_ComparisonExpecation); in DEF_TEST()
2055 r, TestCase(r, SkRect::MakeLTRB(2, 2, 6, 6), fill), in DEF_TEST()
2056 TestCase::kAllSame_ComparisonExpecation); in DEF_TEST()
2058 r, TestCase(r, SkRRect::MakeRectXY(SkRect::MakeLTRB(2, 2, 6, 6), 2, 2), fill), in DEF_TEST()
2059 TestCase::kAllSame_ComparisonExpecation); in DEF_TEST()
2073 TestCase::ComparisonExpecation expectation) { in DEF_TEST()
2082 TestCase caseA(PathGeo(pathA, invert), paint, r); in DEF_TEST()
2083 TestCase caseB(PathGeo(pathB, invert), paint, r); in DEF_TEST()
2098 compare(pathA, pathB, TestCase::kAllSame_ComparisonExpecation); in DEF_TEST()
2104 compare(pathA, pathB, TestCase::kAllDifferent_ComparisonExpecation); in DEF_TEST()
2110 compare(pathA, pathB, TestCase::kAllDifferent_ComparisonExpecation); in DEF_TEST()
2117 compare(pathA, pathB, TestCase::kAllDifferent_ComparisonExpecation); in DEF_TEST()
2124 compare(pathA, pathB, TestCase::kAllDifferent_ComparisonExpecation); in DEF_TEST()
2235 TestCase fillPathCase(reporter, rrgeo.path(), fillPaint); in DEF_TEST()
2241 TestCase fillPathCase2(reporter, rrgeo.path(), fillPaint); in DEF_TEST()
2243 TestCase fillRRectCase(reporter, rrect, fillPaint); in DEF_TEST()
2245 TestCase::kAllSame_ComparisonExpecation); in DEF_TEST()
2250 TestCase strokePathCase(reporter, rrgeo.path(), strokePaint); in DEF_TEST()
2255 TestCase strokeRRectCase(reporter, rrect, strokePaint); in DEF_TEST()
2257 TestCase::kAllSame_ComparisonExpecation); in DEF_TEST()
2289 TestCase emptyArc(GrShape::MakeArc(SkRect::MakeEmpty(), 0, 90.f, false, style), reporter); in DEF_TEST()
2290 TestCase emptyPath(reporter, SkPath(), style); in DEF_TEST()
2291 emptyArc.compare(reporter, emptyPath, TestCase::kAllSame_ComparisonExpecation); in DEF_TEST()
2297 TestCase arc1CW(GrShape::MakeArc(kOval1, 0, 90.f, false, style), reporter); in DEF_TEST()
2298 TestCase arc1CCW(GrShape::MakeArc(kOval1, 90.f, -90.f, false, style), reporter); in DEF_TEST()
2300 TestCase arc1CWWithCenter(GrShape::MakeArc(kOval1, 0, 90.f, true, style), reporter); in DEF_TEST()
2301 TestCase arc1CCWWithCenter(GrShape::MakeArc(kOval1, 90.f, -90.f, true, style), reporter); in DEF_TEST()
2303 TestCase arc2CW(GrShape::MakeArc(kOval2, 0, 90.f, false, style), reporter); in DEF_TEST()
2304 TestCase arc2CWWithCenter(GrShape::MakeArc(kOval2, 0, 90.f, true, style), reporter); in DEF_TEST()
2307 ? TestCase::kAllDifferent_ComparisonExpecation in DEF_TEST()
2308 : TestCase::kAllSame_ComparisonExpecation; in DEF_TEST()
2311 arc1CW.compare(reporter, arc2CW, TestCase::kAllDifferent_ComparisonExpecation); in DEF_TEST()
2312 arc1CW.compare(reporter, arc1CWWithCenter, TestCase::kAllDifferent_ComparisonExpecation); in DEF_TEST()
2314 TestCase::kAllDifferent_ComparisonExpecation); in DEF_TEST()
2317 TestCase arc3A(GrShape::MakeArc(kOval1, 224.f, 73.f, false, style), reporter); in DEF_TEST()
2318 TestCase arc3B(GrShape::MakeArc(kOval1, 224.f - 360.f, 73.f, false, style), reporter); in DEF_TEST()
2319 arc3A.compare(reporter, arc3B, TestCase::kAllDifferent_ComparisonExpecation); in DEF_TEST()
2323 TestCase ovalArc(GrShape::MakeArc(kOval1, 150.f, -790.f, false, style), reporter); in DEF_TEST()
2324 TestCase oval(GrShape(SkRRect::MakeOval(kOval1)), reporter); in DEF_TEST()
2325 auto ovalExpectations = style.hasPathEffect() ? TestCase::kAllDifferent_ComparisonExpecation in DEF_TEST()
2326 : TestCase::kAllSame_ComparisonExpecation; in DEF_TEST()
2328 ovalExpectations = TestCase::kAllDifferent_ComparisonExpecation; in DEF_TEST()
2334 TestCase ovalArcWithCenter(GrShape::MakeArc(kOval1, 304.f, 1225.f, true, style), reporter); in DEF_TEST()
2335 ovalExpectations = style.isSimpleFill() ? TestCase::kAllSame_ComparisonExpecation in DEF_TEST()
2336 : TestCase::kAllDifferent_ComparisonExpecation; in DEF_TEST()