#include "test/unittests/heap/cppgc/tests.h"
#include <memory>
#include "src/heap/cppgc/object-allocator.h"
#include "test/unittests/heap/cppgc/test-platform.h"
#if !CPPGC_IS_STANDALONE
#include "include/v8-initialization.h"
#include "src/init/v8.h"
#endif
namespace cppgc {
namespace internal {
namespace testing {
std::shared_ptr<TestPlatform> TestWithPlatform::platform_;
void TestWithPlatform::SetUpTestSuite() { … }
void TestWithPlatform::TearDownTestSuite() { … }
TestWithHeap::TestWithHeap()
: … { … }
TestWithHeap::~TestWithHeap() = default;
void TestWithHeap::ResetLinearAllocationBuffers() { … }
TestSupportingAllocationOnly::TestSupportingAllocationOnly()
: … { … }
}
}
}