| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 #include "base/files/file_path.h" | 5 #include "base/files/file_path.h" |
| 6 #include "base/macros.h" | 6 #include "base/macros.h" |
| 7 #include "base/path_service.h" | 7 #include "base/path_service.h" |
| 8 #include "gin/modules/console.h" | 8 #include "gin/modules/console.h" |
| 9 #include "gin/modules/module_registry.h" | 9 #include "gin/modules/module_registry.h" |
| 10 #include "gin/test/file_runner.h" | 10 #include "gin/test/file_runner.h" |
| (...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 66 } | 66 } |
| 67 | 67 |
| 68 TEST(JSTest, Struct) { | 68 TEST(JSTest, Struct) { |
| 69 RunTest("struct_unittest.js", true); | 69 RunTest("struct_unittest.js", true); |
| 70 } | 70 } |
| 71 | 71 |
| 72 TEST(JSTest, Union) { | 72 TEST(JSTest, Union) { |
| 73 RunTest("union_unittest.js", true); | 73 RunTest("union_unittest.js", true); |
| 74 } | 74 } |
| 75 | 75 |
| 76 TEST(JSTest, Validation) { | |
| 77 RunTest("validation_unittest.js", true); | |
| 78 } | |
| 79 | |
| 80 } // namespace | 76 } // namespace |
| 81 } // namespace js | 77 } // namespace js |
| 82 } // namespace edk | 78 } // namespace edk |
| 83 } // namespace mojo | 79 } // namespace mojo |
| OLD | NEW |