chromium/third_party/pdfium/fxjs/gc/container_trace_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 "fxjs/gc/container_trace.h"

#include <stdint.h>

#include <list>
#include <map>
#include <set>
#include <vector>

#include "testing/gtest/include/gtest/gtest.h"
#include "v8/include/cppgc/member.h"

namespace {

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

class CountingVisitor {};

}  // namespace

TEST(ContainerTrace, ActualListTrace) {}

TEST(ContainerTrace, ActualMapTraceFirst) {}

TEST(ContainerTrace, ActualMapTraceSecond) {}

TEST(ContainerTrace, ActualMapTraceBoth) {}

TEST(ContainerTrace, ActualSetTrace) {}

TEST(ContainerTrace, ActualVectorTrace) {}