/* * This project is licensed under the MIT license. For more information see the * LICENSE file. */ #include #include "gmock/gmock.h" #include "maddy/breaklineparser.h" // ----------------------------------------------------------------------------- TEST(MADDY_BREAKLINEPARSER, ItReplacesMarkdownWithBreakLineHTML) { std::string text = "Test the text\r\n" "test text to check\r\n" "check testing to text.\r" "Check test to test text\r" "This is a test\r\n" "No more test to check"; std::string expected = "Test the text
" "test text to check
" "check testing to text.
" "Check test to test text
" "This is a test
" "No more test to check"; auto breakLineParser = std::make_shared(); breakLineParser->Parse(text); ASSERT_EQ(text, expected); }