llvm/llvm/unittests/ADT/IListIteratorTest.cpp

//===- unittests/ADT/IListIteratorTest.cpp - ilist_iterator unit tests ----===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//

#include "llvm/ADT/simple_ilist.h"
#include "gtest/gtest.h"

usingnamespacellvm;

namespace {

class Parent {};

struct Node : ilist_node<Node> {};
struct ParentNode : ilist_node<ParentNode, ilist_parent<Parent>> {};

TEST(IListIteratorTest, DefaultConstructor) {}

TEST(IListIteratorTest, Empty) {}

TEST(IListIteratorTest, OneNodeList) {}

TEST(IListIteratorTest, TwoNodeList) {}

TEST(IListIteratorTest, CheckEraseForward) {}

TEST(IListIteratorTest, CheckEraseReverse) {}

TEST(IListIteratorTest, ReverseConstructor) {}

TEST(IListIteratorTest, GetParent) {}

} // end namespace