| 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 "SkPaint.h" | 9 #include "SkPaint.h" |
| 10 #include "SkPath.h" | 10 #include "SkPath.h" |
| (...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 53 REPORTER_ASSERT(reporter, equal(nested[1], inner)); | 53 REPORTER_ASSERT(reporter, equal(nested[1], inner)); |
| 54 } | 54 } |
| 55 } | 55 } |
| 56 } | 56 } |
| 57 | 57 |
| 58 static void TestStroke(skiatest::Reporter* reporter) { | 58 static void TestStroke(skiatest::Reporter* reporter) { |
| 59 test_strokerect(reporter); | 59 test_strokerect(reporter); |
| 60 } | 60 } |
| 61 | 61 |
| 62 #include "TestClassDef.h" | 62 #include "TestClassDef.h" |
| 63 DEFINE_TESTCLASS("Stroke", TestStrokeClass, TestStroke) | 63 DEFINE_TESTCLASS_SHORT(TestStroke) |
| OLD | NEW |