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 #include "Test.h" | 7 #include "Test.h" |
8 #include "SkTSet.h" | 8 #include "SkTSet.h" |
9 | 9 |
10 // Tests the SkTSet<T> class template. | 10 // Tests the SkTSet<T> class template. |
(...skipping 116 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
127 #endif | 127 #endif |
128 } | 128 } |
129 | 129 |
130 static void TestTSet(skiatest::Reporter* reporter) { | 130 static void TestTSet(skiatest::Reporter* reporter) { |
131 TestTSet_basic(reporter); | 131 TestTSet_basic(reporter); |
132 TestTSet_advanced(reporter); | 132 TestTSet_advanced(reporter); |
133 TestTSet_merge(reporter); | 133 TestTSet_merge(reporter); |
134 } | 134 } |
135 | 135 |
136 #include "TestClassDef.h" | 136 #include "TestClassDef.h" |
137 DEFINE_TESTCLASS("TSet", TSetTest, TestTSet) | 137 DEFINE_TESTCLASS_SHORT(TestTSet) |
OLD | NEW |