chromium/third_party/pdfium/fxjs/gc/move_unittest.cpp

// Copyright 2020 The PDFium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include <utility>

#include "fxjs/gc/heap.h"
#include "testing/fxgc_unittest.h"
#include "testing/gtest/include/gtest/gtest.h"
#include "v8/include/cppgc/member.h"
#include "v8/include/cppgc/persistent.h"

namespace {

class HeapObject : public cppgc::GarbageCollected<HeapObject> {};

class CppObject {};

}  // namespace

class MoveUnitTest : public FXGCUnitTest {};

TEST_F(MoveUnitTest, Member) {}

TEST_F(MoveUnitTest, Persistent) {}