brintos

brintos / llvm-project-archived public Read only

0
0
Text · 776 B · c272b23 Raw
20 lines · cpp
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-exception6//7//===----------------------------------------------------------------------===//8 9#include "lldb/Target/MemoryRegionInfo.h"10#include "llvm/Support/FormatVariadic.h"11#include "gtest/gtest.h"12 13using namespace lldb_private;14 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