forked from nodejs/node
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
test: introduce SetUpTestCase/TearDownTestCase
This commit add SetUpTestCase and TearDownTestCase functions that will be called once per test case. Currently we only have SetUp/TearDown which are called for each test. This commit moves the initialization and configuration of Node and V8 to be done on a per test case basis, but gives each test a new Isolate. PR-URL: nodejs#18558 Reviewed-By: Ben Noordhuis <[email protected]>
- Loading branch information
1 parent
9c9b2d5
commit 316ec62
Showing
2 changed files
with
31 additions
and
30 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,7 @@ | ||
#include "node_test_fixture.h" | ||
|
||
uv_loop_t current_loop; | ||
uv_loop_t NodeTestFixture::current_loop; | ||
std::unique_ptr<node::NodePlatform> NodeTestFixture::platform; | ||
std::unique_ptr<v8::ArrayBuffer::Allocator> NodeTestFixture::allocator; | ||
std::unique_ptr<v8::TracingController> NodeTestFixture::tracing_controller; | ||
v8::Isolate::CreateParams NodeTestFixture::params; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters