//===- llvm/unittest/CodeGen/DwarfStringPoolEntryRefTest.cpp --------------===// // // 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 "llvm/CodeGen/DwarfStringPoolEntry.h" #include "llvm/Support/Allocator.h" #include "llvm/Testing/Support/Error.h" #include "gmock/gmock.h" #include "gtest/gtest.h" usingnamespacellvm; TEST(DwarfStringPoolEntryRefTest, TestFullEntry) { … } bool isEntryEqual(const DwarfStringPoolEntry &LHS, const DwarfStringPoolEntry &RHS) { … } TEST(DwarfStringPoolEntryRefTest, TestShortEntry) { … } TEST(DwarfStringPoolEntryRefTest, CompareFullAndShort) { … }