blob: c272b23b23309ab488a932ebc9be42ae8be9a065 [file] [log] [blame]
Raphael Isemann80814282020-01-24 08:23:27 +01001//===-- MemoryRegionInfoTest.cpp ------------------------------------------===//
Pavel Labath048b3ec2017-02-22 10:37:57 +00002//
Chandler Carruth2946cd72019-01-19 08:50:56 +00003// 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
Pavel Labath048b3ec2017-02-22 10:37:57 +00006//
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}