//===- unittests/AST/DeclTest.cpp --- Declaration 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 // //===----------------------------------------------------------------------===// // // Unit tests for the ASTVector container. // //===----------------------------------------------------------------------===// #include "clang/AST/ASTVector.h" #include "clang/AST/ASTContext.h" #include "clang/Basic/Builtins.h" #include "clang/Basic/FileManager.h" #include "clang/Basic/SourceManager.h" #include "gtest/gtest.h" usingnamespaceclang; namespace clang { namespace ast { namespace { class ASTVectorTest : public ::testing::Test { … }; } // unnamed namespace TEST_F(ASTVectorTest, Compile) { … } TEST_F(ASTVectorTest, InsertFill) { … } TEST_F(ASTVectorTest, InsertEmpty) { … } } // end namespace ast } // end namespace clang