1
0
peilaus alkaen https://github.com/quitesimpleorg/qsmaddy.git synced 2025-09-18 00:06:21 +02:00

initial release 1.0.0

This commit is contained in:
M. Petra Baranski
2017-12-25 12:22:35 +01:00
commit 569794c4b6
46 muutettua tiedostoa jossa 4073 lisäystä ja 0 poistoa

Näytä tiedosto

@@ -0,0 +1,33 @@
/*
* This project is licensed under the MIT license. For more information see the
* LICENSE file.
*/
#include <memory>
#include "gmock/gmock.h"
#include "maddy/strongparser.h"
// -----------------------------------------------------------------------------
TEST(MADDY_STRONGPARSER, ItReplacesMarkdownWithStrongHTML)
{
std::string text = "some text **bla** text testing **it** out";
std::string expected = "some text <strong>bla</strong> text testing <strong>it</strong> out";
auto strongParser = std::make_shared<maddy::StrongParser>();
strongParser->Parse(text);
ASSERT_EQ(expected, text);
}
TEST(MADDY_STRONGPARSER, ItReplacesEmphasizedMarkdownNotWithStrongHTML)
{
std::string text = "some text *bla* text testing **it** out";
std::string expected = "some text *bla* text testing <strong>it</strong> out";
auto strongParser = std::make_shared<maddy::StrongParser>();
strongParser->Parse(text);
ASSERT_EQ(expected, text);
}