1 //===-- MemoryRegionInfoTest.cpp ------------------------------------------===// 2 // 3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 4 // See https://llvm.org/LICENSE.txt for license information. 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 6 // 7 //===----------------------------------------------------------------------===// 8 9 #include "lldb/Target/MemoryRegionInfo.h" 10 #include "llvm/Support/FormatVariadic.h" 11 #include "gtest/gtest.h" 12 13 using namespace lldb_private; 14 TEST(MemoryRegionInfoTest,Formatv)15TEST(MemoryRegionInfoTest, Formatv) { 16 EXPECT_EQ("yes", llvm::formatv("{0}", MemoryRegionInfo::eYes).str()); 17 EXPECT_EQ("no", llvm::formatv("{0}", MemoryRegionInfo::eNo).str()); 18 EXPECT_EQ("don't know", llvm::formatv("{0}", MemoryRegionInfo::eDontKnow).str()); 19 } 20