llvm/clang/unittests/Interpreter/CodeCompletionTest.cpp

//===- unittests/Interpreter/CodeCompletionTest.cpp -----------------------===//
//
// 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 "InterpreterTestFixture.h"

#include "clang/Interpreter/CodeCompletion.h"
#include "clang/Frontend/CompilerInstance.h"
#include "clang/Interpreter/Interpreter.h"
#include "clang/Lex/Preprocessor.h"
#include "clang/Sema/CodeCompleteConsumer.h"
#include "clang/Sema/Sema.h"
#include "llvm/LineEditor/LineEditor.h"
#include "llvm/Support/raw_ostream.h"

#include "gmock/gmock.h"
#include "gtest/gtest.h"

usingnamespaceclang;
namespace {
auto CB =;

class CodeCompletionTest : public InterpreterTestBase {};

TEST_F(CodeCompletionTest, Sanity) {}

TEST_F(CodeCompletionTest, SanityNoneValid) {}

TEST_F(CodeCompletionTest, TwoDecls) {}

TEST_F(CodeCompletionTest, CompFunDeclsNoError) {}

TEST_F(CodeCompletionTest, TypedDirected) {}

TEST_F(CodeCompletionTest, SanityClasses) {}

TEST_F(CodeCompletionTest, SubClassing) {}

TEST_F(CodeCompletionTest, MultipleArguments) {}

TEST_F(CodeCompletionTest, Methods) {}

TEST_F(CodeCompletionTest, MethodsInvocations) {}

TEST_F(CodeCompletionTest, NestedInvocations) {}

TEST_F(CodeCompletionTest, TemplateFunctions) {}

} // anonymous namespace