llvm/clang/unittests/Lex/ModuleDeclStateTest.cpp

//===- unittests/Lex/ModuleDeclStateTest.cpp - PPCallbacks 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 "clang/Basic/Diagnostic.h"
#include "clang/Basic/DiagnosticOptions.h"
#include "clang/Basic/FileManager.h"
#include "clang/Basic/LangOptions.h"
#include "clang/Basic/SourceManager.h"
#include "clang/Basic/TargetInfo.h"
#include "clang/Basic/TargetOptions.h"
#include "clang/Lex/HeaderSearch.h"
#include "clang/Lex/HeaderSearchOptions.h"
#include "clang/Lex/ModuleLoader.h"
#include "clang/Lex/Preprocessor.h"
#include "clang/Lex/PreprocessorOptions.h"
#include "gtest/gtest.h"
#include <cstddef>
#include <initializer_list>

usingnamespaceclang;

namespace {

class CheckNamedModuleImportingCB : public PPCallbacks {};
class ModuleDeclStateTest : public ::testing::Test {};

TEST_F(ModuleDeclStateTest, NamedModuleInterface) {}

TEST_F(ModuleDeclStateTest, NamedModuleImplementation) {}

TEST_F(ModuleDeclStateTest, ModuleImplementationPartition) {}

TEST_F(ModuleDeclStateTest, ModuleInterfacePartition) {}

TEST_F(ModuleDeclStateTest, ModuleNameWithDot) {}

TEST_F(ModuleDeclStateTest, NotModule) {}

TEST_F(ModuleDeclStateTest, ModuleWithGMF) {}

TEST_F(ModuleDeclStateTest, ModuleWithGMFWithClangNamedModule) {}

TEST_F(ModuleDeclStateTest, ImportsInNormalTU) {}

TEST_F(ModuleDeclStateTest, ImportAClangNamedModule) {}

TEST_F(ModuleDeclStateTest, ImportWixedForm) {}

} // namespace