1
0
şunun yansıması https://github.com/quitesimpleorg/qsmaddy.git eşitlendi 2024-06-09 15:10:31 +02:00
qsmaddy/tests/maddy/test_maddy_inlinecodeparser.cpp

23 satır
618 B
C++
Ham Normal Görünüm Geçmiş

2017-12-25 12:22:35 +01:00
/*
* This project is licensed under the MIT license. For more information see the
* LICENSE file.
*/
#include <memory>
#include "gmock/gmock.h"
#include "maddy/inlinecodeparser.h"
// -----------------------------------------------------------------------------
TEST(MADDY_INLINECODEPARSER, ItReplacesMarkdownWithCodeHTML)
{
std::string text = "some text `bla` text testing `it` out";
std::string expected = "some text <code>bla</code> text testing <code>it</code> out";
auto emphasizedParser = std::make_shared<maddy::InlineCodeParser>();
emphasizedParser->Parse(text);
ASSERT_EQ(expected, text);
}