| OLD | NEW |
| 1 // Copyright 2014 the V8 project authors. All rights reserved. | 1 // Copyright 2014 the V8 project 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 V8_UNITTESTS_TEST_UTILS_H_ | 5 #ifndef V8_UNITTESTS_TEST_UTILS_H_ |
| 6 #define V8_UNITTESTS_TEST_UTILS_H_ | 6 #define V8_UNITTESTS_TEST_UTILS_H_ |
| 7 | 7 |
| 8 #include "include/v8.h" | 8 #include "include/v8.h" |
| 9 #include "src/base/macros.h" | 9 #include "src/base/macros.h" |
| 10 #include "src/base/utils/random-number-generator.h" | 10 #include "src/base/utils/random-number-generator.h" |
| 11 #include "src/zone.h" | 11 #include "src/zone.h" |
| 12 #include "testing/gtest-support.h" | 12 #include "testing/gtest-support.h" |
| 13 | 13 |
| 14 namespace v8 { | 14 namespace v8 { |
| 15 | 15 |
| 16 std::ostream& operator<<(std::ostream&, ExternalArrayType); | |
| 17 | |
| 18 | 16 |
| 19 class TestWithIsolate : public virtual ::testing::Test { | 17 class TestWithIsolate : public virtual ::testing::Test { |
| 20 public: | 18 public: |
| 21 TestWithIsolate(); | 19 TestWithIsolate(); |
| 22 virtual ~TestWithIsolate(); | 20 virtual ~TestWithIsolate(); |
| 23 | 21 |
| 24 Isolate* isolate() const { return isolate_; } | 22 Isolate* isolate() const { return isolate_; } |
| 25 | 23 |
| 26 static void SetUpTestCase(); | 24 static void SetUpTestCase(); |
| 27 static void TearDownTestCase(); | 25 static void TearDownTestCase(); |
| (...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 115 Zone zone_; | 113 Zone zone_; |
| 116 | 114 |
| 117 DISALLOW_COPY_AND_ASSIGN(TestWithIsolateAndZone); | 115 DISALLOW_COPY_AND_ASSIGN(TestWithIsolateAndZone); |
| 118 }; | 116 }; |
| 119 | 117 |
| 120 | 118 |
| 121 } // namespace internal | 119 } // namespace internal |
| 122 } // namespace v8 | 120 } // namespace v8 |
| 123 | 121 |
| 124 #endif // V8_UNITTESTS_TEST_UTILS_H_ | 122 #endif // V8_UNITTESTS_TEST_UTILS_H_ |
| OLD | NEW |