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 class ArrayBufferAllocator; |
| 17 |
16 | 18 |
17 class TestWithIsolate : public virtual ::testing::Test { | 19 class TestWithIsolate : public virtual ::testing::Test { |
18 public: | 20 public: |
19 TestWithIsolate(); | 21 TestWithIsolate(); |
20 virtual ~TestWithIsolate(); | 22 virtual ~TestWithIsolate(); |
21 | 23 |
22 Isolate* isolate() const { return isolate_; } | 24 Isolate* isolate() const { return isolate_; } |
23 | 25 |
24 static void SetUpTestCase(); | 26 static void SetUpTestCase(); |
25 static void TearDownTestCase(); | 27 static void TearDownTestCase(); |
26 | 28 |
27 private: | 29 private: |
| 30 static ArrayBufferAllocator* array_buffer_allocator_; |
28 static Isolate* isolate_; | 31 static Isolate* isolate_; |
29 Isolate::Scope isolate_scope_; | 32 Isolate::Scope isolate_scope_; |
30 HandleScope handle_scope_; | 33 HandleScope handle_scope_; |
31 | 34 |
32 DISALLOW_COPY_AND_ASSIGN(TestWithIsolate); | 35 DISALLOW_COPY_AND_ASSIGN(TestWithIsolate); |
33 }; | 36 }; |
34 | 37 |
35 | 38 |
36 class TestWithContext : public virtual TestWithIsolate { | 39 class TestWithContext : public virtual TestWithIsolate { |
37 public: | 40 public: |
(...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
112 private: | 115 private: |
113 Zone zone_; | 116 Zone zone_; |
114 | 117 |
115 DISALLOW_COPY_AND_ASSIGN(TestWithIsolateAndZone); | 118 DISALLOW_COPY_AND_ASSIGN(TestWithIsolateAndZone); |
116 }; | 119 }; |
117 | 120 |
118 } // namespace internal | 121 } // namespace internal |
119 } // namespace v8 | 122 } // namespace v8 |
120 | 123 |
121 #endif // V8_UNITTESTS_TEST_UTILS_H_ | 124 #endif // V8_UNITTESTS_TEST_UTILS_H_ |
OLD | NEW |