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

Side by Side Diff: tests/StrokeTest.cpp

Issue 138563004: Move macros from TestClassDef.h to Test.h (Closed) Base URL: https://skia.googlecode.com/svn/trunk
Patch Set: upload Created 6 years, 11 months 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/SurfaceTest.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"
10 #include "SkPaint.h" 9 #include "SkPaint.h"
11 #include "SkPath.h" 10 #include "SkPath.h"
12 #include "SkRect.h" 11 #include "SkRect.h"
13 #include "SkStroke.h" 12 #include "SkStroke.h"
14 13
15 static bool equal(const SkRect& a, const SkRect& b) { 14 static bool equal(const SkRect& a, const SkRect& b) {
16 return SkScalarNearlyEqual(a.left(), b.left()) && 15 return SkScalarNearlyEqual(a.left(), b.left()) &&
17 SkScalarNearlyEqual(a.top(), b.top()) && 16 SkScalarNearlyEqual(a.top(), b.top()) &&
18 SkScalarNearlyEqual(a.right(), b.right()) && 17 SkScalarNearlyEqual(a.right(), b.right()) &&
19 SkScalarNearlyEqual(a.bottom(), b.bottom()); 18 SkScalarNearlyEqual(a.bottom(), b.bottom());
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
52 inner.inset(width/2, width/2); 51 inner.inset(width/2, width/2);
53 REPORTER_ASSERT(reporter, equal(nested[0], outer)); 52 REPORTER_ASSERT(reporter, equal(nested[0], outer));
54 REPORTER_ASSERT(reporter, equal(nested[1], inner)); 53 REPORTER_ASSERT(reporter, equal(nested[1], inner));
55 } 54 }
56 } 55 }
57 } 56 }
58 57
59 DEF_TEST(Stroke, reporter) { 58 DEF_TEST(Stroke, reporter) {
60 test_strokerect(reporter); 59 test_strokerect(reporter);
61 } 60 }
OLDNEW
« no previous file with comments | « tests/StringTest.cpp ('k') | tests/SurfaceTest.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698