llvm/lldb/unittests/Target/PathMappingListTest.cpp

//===-- PathMappingListTest.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 "lldb/Target/PathMappingList.h"
#include "lldb/Utility/FileSpec.h"
#include "llvm/ADT/ArrayRef.h"
#include "gtest/gtest.h"
#include <utility>

usingnamespacelldb_private;

namespace {
struct Matches {};
} // namespace

static void TestPathMappings(const PathMappingList &map,
                             llvm::ArrayRef<Matches> matches,
                             llvm::ArrayRef<ConstString> fails) {}

TEST(PathMappingListTest, RelativeTests) {}

TEST(PathMappingListTest, AbsoluteTests) {}

TEST(PathMappingListTest, RemapRoot) {}

#ifndef _WIN32
TEST(PathMappingListTest, CrossPlatformTests) {}
#endif