llvm/llvm/unittests/DebugInfo/Symbolizer/MarkupTest.cpp


//===- unittest/DebugInfo/Symbolizer/MarkupTest.cpp - Markup parser tests -===//
//
// 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/DebugInfo/Symbolize/Markup.h"

#include "llvm/ADT/Twine.h"
#include "llvm/Support/FormatVariadic.h"

#include "gmock/gmock.h"
#include "gtest/gtest.h"

namespace {

usingnamespacellvm;
usingnamespacellvm::symbolize;
usingnamespacetesting;

Matcher<MarkupNode> isNode(StringRef Text, StringRef Tag = "",
                           Matcher<SmallVector<StringRef>> Fields = IsEmpty()) {}

TEST(SymbolizerMarkup, NoLines) {}

TEST(SymbolizerMarkup, LinesWithoutMarkup) {}

TEST(SymbolizerMarkup, LinesWithMarkup) {}

TEST(SymbolizerMarkup, MultilineElements) {}

} // namespace