llvm/clang/unittests/Tooling/FixItTest.cpp

//===- unittest/Tooling/FixitTest.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 "clang/Tooling/FixIt.h"
#include "clang/ASTMatchers/ASTMatchFinder.h"
#include "clang/ASTMatchers/ASTMatchers.h"
#include "clang/Testing/TestAST.h"
#include "gtest/gtest.h"

usingnamespaceclang;

getText;
createRemoval;
createReplacement;

namespace {

const CallExpr &onlyCall(ASTContext &Ctx) {}

TEST(FixItTest, getText) {}

TEST(FixItTest, getTextWithMacro) {}

TEST(FixItTest, createRemoval) {}

TEST(FixItTest, createRemovalWithMacro) {}

TEST(FixItTest, createReplacement) {}

TEST(FixItTest, createReplacementWithMacro) {}

} // end anonymous namespace