#include #include "../Src/BlogParser.cpp" TEST_CASE("Basic Test") { BlogParser* parser = new BlogParser(); REQUIRE(parser->ParseText("hello") == "hello"); } TEST_CASE("Parser returns valid HTML with basic component") { BlogParser* parser = new BlogParser(); REQUIRE(parser->ParseText("#header \n no header") == "

header

no header"); }