llvm/clang-tools-extra/unittests/clang-tidy/NamespaceAliaserTest.cpp

//===---- NamespaceAliaserTest.cpp - clang-tidy
//----------------------------===//
//
// 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 "../clang-tidy/utils/NamespaceAliaser.h"

#include "ClangTidyTest.h"
#include "clang/ASTMatchers/ASTMatchFinder.h"
#include "clang/ASTMatchers/ASTMatchers.h"
#include "gtest/gtest.h"

namespace clang {
namespace tidy {
namespace utils {
// This checker is for testing only. It can only run on one test case
// (e.g. with one SourceManager).
class InsertAliasCheck : public ClangTidyCheck {};

template <typename Check>
std::string runChecker(StringRef Code, unsigned ExpectedWarningCount) {}

TEST(NamespaceAliaserTest, AddNewAlias) {}

TEST(NamespaceAliaserTest, ReuseAlias) {}

TEST(NamespaceAliaserTest, AddsOnlyOneAlias) {}

TEST(NamespaceAliaserTest, LocalConflict) {}

TEST(NamespaceAliaserTest, GlobalConflict) {}

} // namespace utils
} // namespace tidy
} // namespace clang