#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) { … }
}
}
}