| OLD | NEW |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef CHROME_COMMON_JSON_SCHEMA_VALIDATOR_UNITTEST_BASE_H_ | 5 #ifndef CHROME_COMMON_JSON_SCHEMA_VALIDATOR_UNITTEST_BASE_H_ |
| 6 #define CHROME_COMMON_JSON_SCHEMA_VALIDATOR_UNITTEST_BASE_H_ | 6 #define CHROME_COMMON_JSON_SCHEMA_VALIDATOR_UNITTEST_BASE_H_ |
| 7 | 7 |
| 8 #include "testing/gtest/include/gtest/gtest.h" | 8 #include "testing/gtest/include/gtest/gtest.h" |
| 9 | 9 |
| 10 namespace base { | 10 namespace base { |
| (...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 47 void TestStringPattern(); | 47 void TestStringPattern(); |
| 48 void TestEnum(); | 48 void TestEnum(); |
| 49 void TestChoices(); | 49 void TestChoices(); |
| 50 void TestExtends(); | 50 void TestExtends(); |
| 51 void TestObject(); | 51 void TestObject(); |
| 52 void TestTypeReference(); | 52 void TestTypeReference(); |
| 53 void TestArrayTuple(); | 53 void TestArrayTuple(); |
| 54 void TestArrayNonTuple(); | 54 void TestArrayNonTuple(); |
| 55 void TestString(); | 55 void TestString(); |
| 56 void TestNumber(); | 56 void TestNumber(); |
| 57 void TestTypeClassifier(); | 57 void TestValueTypeClassifier(); |
| 58 void TestSchemaTypeClassifier(); |
| 58 void TestTypes(); | 59 void TestTypes(); |
| 59 | 60 |
| 60 ValidatorType type_; | 61 ValidatorType type_; |
| 61 }; | 62 }; |
| 62 | 63 |
| 63 #endif // CHROME_COMMON_JSON_SCHEMA_VALIDATOR_UNITTEST_BASE_H_ | 64 #endif // CHROME_COMMON_JSON_SCHEMA_VALIDATOR_UNITTEST_BASE_H_ |
| OLD | NEW |