llvm/llvm/unittests/ADT/CombinationGeneratorTest.cpp

//===- llvm/unittest/ADT/CombinationGeneratorTest.cpp ---------------------===//
//
// 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/CombinationGenerator.h"
#include "llvm/ADT/ArrayRef.h"
#include "llvm/ADT/STLExtras.h"
#include "llvm/Support/ErrorHandling.h"
#include "gmock/gmock.h"
#include "gtest/gtest.h"
#include <algorithm>
#include <cstddef>
#include <iterator>
#include <vector>

usingnamespacellvm;

namespace {

TEST(CombinationGenerator, Square) {}

TEST(CombinationGenerator, MiddleColumn) {}

TEST(CombinationGenerator, SideColumns) {}

TEST(CombinationGenerator, LeftColumn) {}

TEST(CombinationGenerator, RightColumn) {}

TEST(CombinationGenerator, Column) {}

TEST(CombinationGenerator, Row) {}

TEST(CombinationGenerator, Singleton) {}

} // end anonymous namespace