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

//===-- CodeCompletionStringsTests.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 "CodeCompletionStrings.h"
#include "TestTU.h"
#include "clang/Sema/CodeCompleteConsumer.h"
#include "gmock/gmock.h"
#include "gtest/gtest.h"

namespace clang {
namespace clangd {
namespace {

class CompletionStringTest : public ::testing::Test {};

TEST_F(CompletionStringTest, ReturnType) {}

TEST_F(CompletionStringTest, Documentation) {}

TEST_F(CompletionStringTest, DocumentationWithAnnotation) {}

TEST_F(CompletionStringTest, GetDeclCommentBadUTF8) {}

TEST_F(CompletionStringTest, MultipleAnnotations) {}

TEST_F(CompletionStringTest, EmptySignature) {}

TEST_F(CompletionStringTest, Function) {}

TEST_F(CompletionStringTest, FunctionWithDefaultParams) {}

TEST_F(CompletionStringTest, EscapeSnippet) {}

TEST_F(CompletionStringTest, SnippetsInPatterns) {}

TEST_F(CompletionStringTest, DropFunctionArguments) {}

TEST_F(CompletionStringTest, IgnoreInformativeQualifier) {}

TEST_F(CompletionStringTest, ObjectiveCMethodNoArguments) {}

TEST_F(CompletionStringTest, ObjectiveCMethodOneArgument) {}

TEST_F(CompletionStringTest, ObjectiveCMethodTwoArgumentsFromBeginning) {}

TEST_F(CompletionStringTest, ObjectiveCMethodTwoArgumentsFromMiddle) {}

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