llvm/clang-tools-extra/clangd/unittests/StdLibTests.cpp

//===-- StdLibTests.cpp -----------------------------------------*- C++ -*-===//
//
// 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 "Annotations.h"
#include "ClangdServer.h"
#include "CodeComplete.h"
#include "Compiler.h"
#include "Config.h"
#include "SyncAPI.h"
#include "TestFS.h"
#include "index/StdLib.h"
#include "clang/Basic/LangOptions.h"
#include "clang/Basic/SourceManager.h"
#include "gmock/gmock.h"
#include "gtest/gtest.h"
#include <memory>

usingnamespacetesting;

namespace clang {
namespace clangd {
namespace {

// Check the generated header sources contains usual standard library headers.
TEST(StdLibTests, getStdlibUmbrellaHeader) {}

MATCHER_P(Named, Name, "") {}

// Build an index, and check if it contains the right symbols.
TEST(StdLibTests, indexStandardLibrary) {}

TEST(StdLibTests, StdLibSet) {}

MATCHER_P(StdlibSymbol, Name, "") {}

TEST(StdLibTests, EndToEnd) {}

} // namespace
} // namespace clangd
} // namespace clang