llvm/llvm/unittests/ADT/SetOperationsTest.cpp

//===- SetOperations.cpp - Unit tests for set operations ------------------===//
//
// 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/SetOperations.h"
#include "llvm/ADT/SetVector.h"
#include "llvm/ADT/SmallPtrSet.h"
#include "llvm/ADT/SmallVector.h"
#include "gmock/gmock.h"
#include "gtest/gtest.h"

#include <set>

usingnamespacellvm;

IsEmpty;
UnorderedElementsAre;

namespace {

TEST(SetOperationsTest, SetUnion) {}

TEST(SetOperationsTest, SetIntersect) {}

TEST(SetOperationsTest, SetIntersection) {}

TEST(SetOperationsTest, SetDifference) {}

TEST(SetOperationsTest, SetSubtract) {}

TEST(SetOperationsTest, SetSubtractSmallPtrSet) {}

TEST(SetOperationsTest, SetSubtractSmallVector) {}

TEST(SetOperationsTest, SetSubtractRemovedRemaining) {}

TEST(SetOperationsTest, SetIsSubset) {}

} // namespace