Lines Matching +full:multiple +full:- +full:amp
36 #include <atf-c++.hpp>
89 ATF_REQUIRE_EQ("foo "bar& <tag> yay' baz", in ATF_TEST_CASE_BODY()
92 ATF_REQUIRE_EQ(""&<>'", text::escape_xml("\"&<>'")); in ATF_TEST_CASE_BODY()
93 ATF_REQUIRE_EQ("&&&", text::escape_xml("&&&")); in ATF_TEST_CASE_BODY()
94 ATF_REQUIRE_EQ("&#8;&#11;", text::escape_xml("\b\v")); in ATF_TEST_CASE_BODY()
95 ATF_REQUIRE_EQ("\t&#127;BAR&", text::escape_xml("\t\x7f""BAR&")); in ATF_TEST_CASE_BODY()
123 ATF_REQUIRE_EQ("'Multiple quotes \\'\\'\\' together'", in ATF_TEST_CASE_BODY()
124 text::quote("Multiple quotes ''' together", '\'')); in ATF_TEST_CASE_BODY()
171 refill_test("first-long-word\nother\nwords", "first-long-word other words", in ATF_TEST_CASE_BODY()
173 refill_test("first-long-word\nother words", "first-long-word other words", in ATF_TEST_CASE_BODY()
175 refill_test("first-long-word other\nwords", "first-long-word other words", in ATF_TEST_CASE_BODY()
177 refill_test("first-long-word other words", "first-long-word other words", in ATF_TEST_CASE_BODY()
194 refill_test("this-is-a-long-string", "this-is-a-long-string", 5, 5); in ATF_TEST_CASE_BODY()
196 refill_test("this is\na-string-with-long-words", in ATF_TEST_CASE_BODY()
197 "this is a-string-with-long-words", 10, 10); in ATF_TEST_CASE_BODY()
352 ATF_REQUIRE_EQ(-12345, text::to_type< int >("-12345")); in ATF_TEST_CASE_BODY()