#include "include/v8-platform.h"
#include "src/init/v8.h"
#include "test/unittests/heap/heap-utils.h"
#include "test/unittests/test-utils.h"
#include "testing/gtest/include/gtest/gtest.h"
namespace v8 {
template <typename TMixin>
class WithSingleThreadedDefaultPlatformMixin : public TMixin { … };
class SingleThreadedDefaultPlatformTest
: public WithIsolateScopeMixin<
WithIsolateMixin<
WithSingleThreadedDefaultPlatformMixin<
::testing::Test>>> { … };
TEST_F(SingleThreadedDefaultPlatformTest, SingleThreadedDefaultPlatform) { … }
}