//===-- FuzzySymbolIndexTests.cpp - Fuzzy symbol index unit tests ---------===// // // 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 "FuzzySymbolIndex.h" #include "gmock/gmock.h" #include "llvm/Support/Regex.h" #include "gtest/gtest.h" ElementsAre; Not; namespace clang { namespace include_fixer { namespace { TEST(FuzzySymbolIndexTest, Tokenize) { … } MATCHER_P(MatchesSymbol, Identifier, "") { … } TEST(FuzzySymbolIndexTest, QueryRegexp) { … } } // namespace } // namespace include_fixer } // namespace clang