#include "FindAllSymbolsAction.h"
#include "HeaderMapCollector.h"
#include "SymbolInfo.h"
#include "SymbolReporter.h"
#include "clang/ASTMatchers/ASTMatchFinder.h"
#include "clang/Basic/FileManager.h"
#include "clang/Basic/FileSystemOptions.h"
#include "clang/Frontend/CompilerInstance.h"
#include "clang/Frontend/PCHContainerOperations.h"
#include "clang/Tooling/Tooling.h"
#include "llvm/ADT/IntrusiveRefCntPtr.h"
#include "llvm/ADT/STLExtras.h"
#include "llvm/ADT/StringRef.h"
#include "llvm/Support/MemoryBuffer.h"
#include "llvm/Support/VirtualFileSystem.h"
#include "gtest/gtest.h"
#include <memory>
#include <string>
#include <vector>
namespace clang {
namespace find_all_symbols {
static const char HeaderName[] = …;
class TestSymbolReporter : public SymbolReporter { … };
class FindAllSymbolsTest : public ::testing::Test { … };
TEST_F(FindAllSymbolsTest, VariableSymbols) { … }
TEST_F(FindAllSymbolsTest, ExternCSymbols) { … }
TEST_F(FindAllSymbolsTest, CXXRecordSymbols) { … }
TEST_F(FindAllSymbolsTest, CXXRecordSymbolsTemplate) { … }
TEST_F(FindAllSymbolsTest, DontIgnoreTemplatePartialSpecialization) { … }
TEST_F(FindAllSymbolsTest, FunctionSymbols) { … }
TEST_F(FindAllSymbolsTest, NamespaceTest) { … }
TEST_F(FindAllSymbolsTest, DecayedTypeTest) { … }
TEST_F(FindAllSymbolsTest, CTypedefTest) { … }
TEST_F(FindAllSymbolsTest, EnumTest) { … }
TEST_F(FindAllSymbolsTest, IWYUPrivatePragmaTest) { … }
TEST_F(FindAllSymbolsTest, MacroTest) { … }
TEST_F(FindAllSymbolsTest, MacroTestWithIWYU) { … }
TEST_F(FindAllSymbolsTest, NoFriendTest) { … }
}
}