llvm/clang-tools-extra/clangd/unittests/support/MarkupTests.cpp

//===-- MarkupTests.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 "support/Markup.h"
#include "clang/Basic/LLVM.h"
#include "llvm/ADT/StringRef.h"
#include "gmock/gmock.h"
#include "gtest/gtest.h"

namespace clang {
namespace clangd {
namespace markup {
namespace {

std::string escape(llvm::StringRef Text) {}

MATCHER_P(escaped, C, "") {}

MATCHER(escapedNone, "") {}

TEST(Render, Escaping) {}

TEST(Paragraph, Chunks) {}

TEST(Paragraph, SeparationOfChunks) {}

TEST(Paragraph, ExtraSpaces) {}

TEST(Paragraph, SpacesCollapsed) {}

TEST(Paragraph, NewLines) {}

TEST(Document, Separators) {}

TEST(Document, Ruler) {}

TEST(Document, Append) {}

TEST(Document, Heading) {}

TEST(CodeBlock, Render) {}

TEST(BulletList, Render) {}

} // namespace
} // namespace markup
} // namespace clangd
} // namespace clang