From 1f3aa42ac7a04bb85e8117891aa729f5e369b2b0 Mon Sep 17 00:00:00 2001 From: Philipp Gesang Date: Mon, 29 Nov 2021 14:25:01 +0100 Subject: [PATCH] fix typo --- test/stringfunc.cpp | 14 +++++++------- 1 files changed, 7 insertions(+), 7 deletions(-) diff --git a/test/stringfunc.cpp b/test/stringfunc.cpp index 90bd63a..6553632 100644 --- a/test/stringfunc.cpp +++ b/test/stringfunc.cpp @@ -45,49 +45,49 @@ typedef std::list< std::string > StringList; BOOST_AUTO_TEST_SUITE(stringfunc) -BOOST_AUTO_TEST_CASE(smart_html_entites1) +BOOST_AUTO_TEST_CASE(smart_html_entities1) { string output = smart_html_entities("Test"); BOOST_CHECK_EQUAL(string("Test"), output); } -BOOST_AUTO_TEST_CASE(smart_html_entites2) +BOOST_AUTO_TEST_CASE(smart_html_entities2) { string output = smart_html_entities("Täst"); BOOST_CHECK_EQUAL(string("Täst"), output); } -BOOST_AUTO_TEST_CASE(smart_html_entites3) +BOOST_AUTO_TEST_CASE(smart_html_entities3) { string output = smart_html_entities("<>"); BOOST_CHECK_EQUAL(string("<>"), output); } -BOOST_AUTO_TEST_CASE(smart_html_entites4) +BOOST_AUTO_TEST_CASE(smart_html_entities4) { string output = smart_html_entities("<ümlaut>"); BOOST_CHECK_EQUAL(string("<ümlaut>"), output); } -BOOST_AUTO_TEST_CASE(smart_html_entites5) +BOOST_AUTO_TEST_CASE(smart_html_entities5) { string output = smart_html_entities("Test<ümlaut>Blä"); BOOST_CHECK_EQUAL(string("Test<ümlaut>Blä"), output); } -BOOST_AUTO_TEST_CASE(smart_html_entites6) +BOOST_AUTO_TEST_CASE(smart_html_entities6) { string output = smart_html_entities("System > Einstellungen"); BOOST_CHECK_EQUAL(string("System > Einstellungen"), output); } -BOOST_AUTO_TEST_CASE(smart_html_entites7) +BOOST_AUTO_TEST_CASE(smart_html_entities7) { string output = smart_html_entities("Finden Sie auf der Seite \"System > Einstellungen\". Oder etwa nicht?"); -- 1.7.1