#include "include/cppgc/testing.h"
#include "include/cppgc/allocation.h"
#include "include/cppgc/garbage-collected.h"
#include "include/cppgc/persistent.h"
#include "test/unittests/heap/cppgc/tests.h"
#include "testing/gtest/include/gtest/gtest.h"
namespace cppgc {
namespace internal {
namespace {
class TestingTest : public testing::TestWithHeap { … };
class GCed : public GarbageCollected<GCed> { … };
}
TEST_F(TestingTest,
OverrideEmbeddertackStateScopeDoesNotOverrideExplicitCalls) { … }
TEST_F(TestingTest, StandaloneTestingHeap) { … }
}
}