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 "TestClassDef.h" |
9 #include "SkRandom.h" | 10 #include "SkRandom.h" |
10 #include "SkTInternalLList.h" | 11 #include "SkTInternalLList.h" |
11 #include "SkTLList.h" | 12 #include "SkTLList.h" |
12 | 13 |
13 class ListElement { | 14 class ListElement { |
14 public: | 15 public: |
15 ListElement(int id) : fID(id) { | 16 ListElement(int id) : fID(id) { |
16 } | 17 } |
17 bool operator== (const ListElement& other) { return fID == other.fID; } | 18 bool operator== (const ListElement& other) { return fID == other.fID; } |
18 | 19 |
(...skipping 284 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
303 SkASSERT(count == ListElement::InstanceCount()); | 304 SkASSERT(count == ListElement::InstanceCount()); |
304 #endif | 305 #endif |
305 } | 306 } |
306 list1.reset(); | 307 list1.reset(); |
307 #if SK_ENABLE_INST_COUNT | 308 #if SK_ENABLE_INST_COUNT |
308 SkASSERT(0 == ListElement::InstanceCount()); | 309 SkASSERT(0 == ListElement::InstanceCount()); |
309 #endif | 310 #endif |
310 } | 311 } |
311 } | 312 } |
312 | 313 |
313 static void test_llists(skiatest::Reporter* reporter) { | 314 DEF_TEST(LList, reporter) { |
314 TestTInternalLList(reporter); | 315 TestTInternalLList(reporter); |
315 TestTLList(reporter); | 316 TestTLList(reporter); |
316 } | 317 } |
317 | |
318 #include "TestClassDef.h" | |
319 DEFINE_TESTCLASS("LList", TestLListClass, test_llists) | |
OLD | NEW |