chromium/v8/test/unittests/base/threaded-list-unittest.cc

// Copyright 2018 the V8 project authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include <iterator>

#include "src/init/v8.h"

#include "src/base/threaded-list.h"
#include "testing/gtest-support.h"

namespace v8 {
namespace base {

struct ThreadedListTestNode {};

struct ThreadedListTest : public ::testing::Test {};

TEST_F(ThreadedListTest, Add) {}

TEST_F(ThreadedListTest, AddFront) {}

TEST_F(ThreadedListTest, DropHead) {}

TEST_F(ThreadedListTest, Append) {}

TEST_F(ThreadedListTest, AppendOutOfScope) {}

TEST_F(ThreadedListTest, Prepend) {}

TEST_F(ThreadedListTest, Clear) {}

TEST_F(ThreadedListTest, MoveAssign) {}

TEST_F(ThreadedListTest, MoveCtor) {}

TEST_F(ThreadedListTest, Remove) {}

TEST_F(ThreadedListTest, Rewind) {}

TEST_F(ThreadedListTest, IterComp) {}

TEST_F(ThreadedListTest, ConstIterComp) {}

TEST_F(ThreadedListTest, RemoveAt) {}

}  // namespace base
}  // namespace v8