Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(6)

Side by Side Diff: tests/StrokeTest.cpp

Issue 100113004: Use DEFINE_TESTCLASS_SHORT macro in tests. (Closed) Base URL: https://skia.googlecode.com/svn/trunk
Patch Set: rebase Created 7 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « tests/StringTest.cpp ('k') | tests/TLSTest.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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)
OLDNEW
« no previous file with comments | « tests/StringTest.cpp ('k') | tests/TLSTest.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698