OLD | NEW |
1 /* | 1 /* |
2 * Copyright 2012 Google Inc. | 2 * Copyright 2012 Google Inc. |
3 * | 3 * |
4 * Use of this source code is governed by a BSD-style license that can be | 4 * Use of this source code is governed by a BSD-style license that can be |
5 * found in the LICENSE file. | 5 * found in the LICENSE file. |
6 */ | 6 */ |
7 | 7 |
8 #include "Test.h" | 8 #include "Test.h" |
| 9 #include "TestClassDef.h" |
9 #include "SkPaint.h" | 10 #include "SkPaint.h" |
10 #include "SkPath.h" | 11 #include "SkPath.h" |
11 #include "SkRect.h" | 12 #include "SkRect.h" |
12 #include "SkStroke.h" | 13 #include "SkStroke.h" |
13 | 14 |
14 static bool equal(const SkRect& a, const SkRect& b) { | 15 static bool equal(const SkRect& a, const SkRect& b) { |
15 return SkScalarNearlyEqual(a.left(), b.left()) && | 16 return SkScalarNearlyEqual(a.left(), b.left()) && |
16 SkScalarNearlyEqual(a.top(), b.top()) && | 17 SkScalarNearlyEqual(a.top(), b.top()) && |
17 SkScalarNearlyEqual(a.right(), b.right()) && | 18 SkScalarNearlyEqual(a.right(), b.right()) && |
18 SkScalarNearlyEqual(a.bottom(), b.bottom()); | 19 SkScalarNearlyEqual(a.bottom(), b.bottom()); |
(...skipping 29 matching lines...) Expand all Loading... |
48 REPORTER_ASSERT(reporter, fillPath.isNestedRects(nested) == isMiter); | 49 REPORTER_ASSERT(reporter, fillPath.isNestedRects(nested) == isMiter); |
49 if (isMiter) { | 50 if (isMiter) { |
50 SkRect inner(r); | 51 SkRect inner(r); |
51 inner.inset(width/2, width/2); | 52 inner.inset(width/2, width/2); |
52 REPORTER_ASSERT(reporter, equal(nested[0], outer)); | 53 REPORTER_ASSERT(reporter, equal(nested[0], outer)); |
53 REPORTER_ASSERT(reporter, equal(nested[1], inner)); | 54 REPORTER_ASSERT(reporter, equal(nested[1], inner)); |
54 } | 55 } |
55 } | 56 } |
56 } | 57 } |
57 | 58 |
58 static void TestStroke(skiatest::Reporter* reporter) { | 59 DEF_TEST(Stroke, reporter) { |
59 test_strokerect(reporter); | 60 test_strokerect(reporter); |
60 } | 61 } |
61 | |
62 #include "TestClassDef.h" | |
63 DEFINE_TESTCLASS("Stroke", TestStrokeClass, TestStroke) | |
OLD | NEW |