//===- unittests/AST/ProfilingTest.cpp --- Tests for Profiling ------===// // // 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/AST/ASTContext.h" #include "clang/ASTMatchers/ASTMatchFinder.h" #include "clang/ASTMatchers/ASTMatchers.h" #include "clang/Tooling/Tooling.h" #include "gtest/gtest.h" #include <utility> namespace clang { namespace { usingnamespaceast_matchers; static auto getClassTemplateRedecls() { … } template <class T> static void testTypeNode(const T *T1, const T *T2) { … } TEST(Profiling, DeducedTemplateSpecializationType_Name) { … } } // namespace } // namespace clang