Parcourir la source

Removed test for string_removeAllWhiteSpace.

David Piuva il y a 5 ans
Parent
commit
a4a421a484
1 fichiers modifiés avec 0 ajouts et 4 suppressions
  1. 0 4
      Source/test/tests/StringTest.cpp

+ 0 - 4
Source/test/tests/StringTest.cpp

@@ -181,10 +181,6 @@ START_TEST(String)
 	ASSERT_MATCH(dsr::string_lowerCase(U"abc1"), U"abc1");
 	ASSERT_MATCH(dsr::string_lowerCase(U"Abc12"), U"abc12");
 	ASSERT_MATCH(dsr::string_lowerCase(U"ABC123"), U"abc123");
-	// Complete white space removal
-	ASSERT_MATCH(dsr::string_removeAllWhiteSpace(U" "), U"");
-	ASSERT_MATCH(dsr::string_removeAllWhiteSpace(U" abc\n	"), U"abc");
-	ASSERT_MATCH(dsr::string_removeAllWhiteSpace(U" a \f sentence \r surrounded	\n by spa\vce	\t"), U"asentencesurroundedbyspace");
 	// White space removal by pointing to a section of the original input
 	ASSERT_MATCH(dsr::string_removeOuterWhiteSpace(U" "), U"");
 	ASSERT_MATCH(dsr::string_removeOuterWhiteSpace(U"  abc  "), U"abc");