| OLD | NEW |
| 1 | 1 |
| 2 /* | 2 /* |
| 3 * Copyright 2011 Google Inc. | 3 * Copyright 2011 Google Inc. |
| 4 * | 4 * |
| 5 * Use of this source code is governed by a BSD-style license that can be | 5 * Use of this source code is governed by a BSD-style license that can be |
| 6 * found in the LICENSE file. | 6 * found in the LICENSE file. |
| 7 */ | 7 */ |
| 8 #include "Test.h" | 8 #include "Test.h" |
| 9 #include "SkMetaData.h" | 9 #include "SkMetaData.h" |
| 10 | 10 |
| (...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 109 REPORTER_ASSERT(reporter, !m1.findS32("int")); | 109 REPORTER_ASSERT(reporter, !m1.findS32("int")); |
| 110 REPORTER_ASSERT(reporter, !m1.findScalar("scalar")); | 110 REPORTER_ASSERT(reporter, !m1.findScalar("scalar")); |
| 111 REPORTER_ASSERT(reporter, !m1.findString("hello")); | 111 REPORTER_ASSERT(reporter, !m1.findString("hello")); |
| 112 REPORTER_ASSERT(reporter, !m1.findBool("true")); | 112 REPORTER_ASSERT(reporter, !m1.findBool("true")); |
| 113 REPORTER_ASSERT(reporter, !m1.findBool("false")); | 113 REPORTER_ASSERT(reporter, !m1.findBool("false")); |
| 114 | 114 |
| 115 test_ptrs(reporter); | 115 test_ptrs(reporter); |
| 116 } | 116 } |
| 117 | 117 |
| 118 #include "TestClassDef.h" | 118 #include "TestClassDef.h" |
| 119 DEFINE_TESTCLASS("MetaData", TestMetaDataClass, TestMetaData) | 119 DEFINE_TESTCLASS_SHORT(TestMetaData) |
| OLD | NEW |