X-Git-Url: http://Server1/repobrowser/?p=xestiaab%2F.git;a=blobdiff_plain;f=source%2Ftests%2Fxestiaab_common.h;h=3f8b803eeae81e5fe0d56bfdac52eb7fa074dd08;hp=2102240e79a78e3c7bcab4273dbc46a79e4be43f;hb=a776c519f9846a8d0f2b1b9241e10b3101ad7296;hpb=f8fd44076329849a8ca9f1067c98c787fb80a7f0 diff --git a/source/tests/xestiaab_common.h b/source/tests/xestiaab_common.h index 2102240..3f8b803 100644 --- a/source/tests/xestiaab_common.h +++ b/source/tests/xestiaab_common.h @@ -321,6 +321,18 @@ TEST(CommonFunctions, ConvertToHTML){ // Tests for converting data for inserting into a HTML // formatted document. + wxString ConvertToHTMLData = "The test line where < is probably better than >!"; + ConvertToHTML(&ConvertToHTMLData); + ASSERT_EQ("The test line where < is probably better than >!", ConvertToHTMLData.ToStdString()); + + ConvertToHTMLData = "More testing &<>\n"; + ConvertToHTML(&ConvertToHTMLData); + ASSERT_EQ("More testing &<>
", ConvertToHTMLData.ToStdString()); + + ConvertToHTMLData = "This is the first line.\nThis is the second line.\nThis is the third line."; + ConvertToHTML(&ConvertToHTMLData); + ASSERT_EQ("This is the first line.
This is the second line.
This is the third line.", ConvertToHTMLData.ToStdString()); + } TEST(CommonFunctions, MapDataExists){