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

Side by Side Diff: tests/PathOpsTypesTest.cpp

Issue 117863005: Get rid of DEFINE_TESTCLASS_SHORT() macro. (Closed) Base URL: https://skia.googlecode.com/svn/trunk
Patch Set: Mike review 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/PathOpsSkpTest.cpp ('k') | tests/SkpSkGrTest.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 2013 Google Inc. 2 * Copyright 2013 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 #include "PathOpsTestCommon.h" 7 #include "PathOpsTestCommon.h"
8 #include "Test.h" 8 #include "Test.h"
9 #include "TestClassDef.h"
9 10
10 static const double roughlyTests[][2] = { 11 static const double roughlyTests[][2] = {
11 {5.0402503619650929e-005, 4.3178054475078825e-005} 12 {5.0402503619650929e-005, 4.3178054475078825e-005}
12 }; 13 };
13 14
14 static const size_t roughlyTestsCount = SK_ARRAY_COUNT(roughlyTests); 15 static const size_t roughlyTestsCount = SK_ARRAY_COUNT(roughlyTests);
15 16
16 static void PathOpsRoughlyTest(skiatest::Reporter* reporter) { 17 DEF_TEST(PathOpsRoughly, reporter) {
17 for (size_t index = 0; index < roughlyTestsCount; ++index) { 18 for (size_t index = 0; index < roughlyTestsCount; ++index) {
18 bool equal = RoughlyEqualUlps(roughlyTests[index][0], roughlyTests[index ][1]); 19 bool equal = RoughlyEqualUlps(roughlyTests[index][0], roughlyTests[index ][1]);
19 REPORTER_ASSERT(reporter, equal); 20 REPORTER_ASSERT(reporter, equal);
20 } 21 }
21 } 22 }
22
23 #include "TestClassDef.h"
24 DEFINE_TESTCLASS_SHORT(PathOpsRoughlyTest)
OLDNEW
« no previous file with comments | « tests/PathOpsSkpTest.cpp ('k') | tests/SkpSkGrTest.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698