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

Side by Side Diff: tests/LListTest.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/JpegTest.cpp ('k') | tests/LayerDrawLooperTest.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 "SkRandom.h" 9 #include "SkRandom.h"
11 #include "SkTInternalLList.h" 10 #include "SkTInternalLList.h"
12 #include "SkTLList.h" 11 #include "SkTLList.h"
13 12
14 class ListElement { 13 class ListElement {
15 public: 14 public:
16 ListElement(int id) : fID(id) { 15 ListElement(int id) : fID(id) {
17 } 16 }
18 bool operator== (const ListElement& other) { return fID == other.fID; } 17 bool operator== (const ListElement& other) { return fID == other.fID; }
19 18
(...skipping 288 matching lines...) Expand 10 before | Expand all | Expand 10 after
308 #if SK_ENABLE_INST_COUNT 307 #if SK_ENABLE_INST_COUNT
309 SkASSERT(0 == ListElement::InstanceCount()); 308 SkASSERT(0 == ListElement::InstanceCount());
310 #endif 309 #endif
311 } 310 }
312 } 311 }
313 312
314 DEF_TEST(LList, reporter) { 313 DEF_TEST(LList, reporter) {
315 TestTInternalLList(reporter); 314 TestTInternalLList(reporter);
316 TestTLList(reporter); 315 TestTLList(reporter);
317 } 316 }
OLDNEW
« no previous file with comments | « tests/JpegTest.cpp ('k') | tests/LayerDrawLooperTest.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698