1 //===- unittest/Tooling/ReplacementTest.h - Replacements related test------===//
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
9 // This file defines utility class and function for Replacement related tests.
11 //===----------------------------------------------------------------------===//
13 #ifndef LLVM_CLANG_UNITTESTS_TOOLING_REPLACEMENTTESTBASE_H
14 #define LLVM_CLANG_UNITTESTS_TOOLING_REPLACEMENTTESTBASE_H
16 #include "RewriterTestContext.h"
17 #include "clang/Tooling/Core/Replacement.h"
18 #include "gtest/gtest.h"
23 /// \brief Converts a set of replacements to Replacements class.
24 /// \return A Replacements class containing \p Replaces on success; otherwise,
25 /// an empty Replacements is returned.
26 inline tooling::Replacements
27 toReplacements(const std::set
<tooling::Replacement
> &Replaces
) {
28 tooling::Replacements Result
;
29 for (const auto &R
: Replaces
) {
30 auto Err
= Result
.add(R
);
33 llvm::errs() << llvm::toString(std::move(Err
)) << "\n";
34 return tooling::Replacements();
40 /// \brief A utility class for replacement related tests.
41 class ReplacementTest
: public ::testing::Test
{
43 tooling::Replacement
createReplacement(SourceLocation Start
, unsigned Length
,
44 llvm::StringRef ReplacementText
) {
45 return tooling::Replacement(Context
.Sources
, Start
, Length
,
49 RewriterTestContext Context
;
52 } // namespace tooling
55 #endif // LLVM_CLANG_UNITTESTS_TOOLING_REPLACEMENTTESTBASE_H