//===- unittests/Basic/FileEntryTest.cpp - Test FileEntry/FileEntryRef ----===// // // 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/Basic/FileEntry.h" #include "llvm/ADT/DenseSet.h" #include "llvm/ADT/StringMap.h" #include "llvm/Support/Path.h" #include "gtest/gtest.h" usingnamespacellvm; namespace clang { class FileEntryTestHelper { … }; namespace { TEST(FileEntryTest, FileEntryRef) { … } TEST(FileEntryTest, equals) { … } TEST(FileEntryTest, isSameRef) { … } TEST(FileEntryTest, DenseMapInfo) { … } TEST(DirectoryEntryTest, isSameRef) { … } TEST(DirectoryEntryTest, DenseMapInfo) { … } } // end namespace } // namespace clang