Browse Source

Removed test for string_removeAllWhiteSpace.

David Piuva 5 years ago
parent
commit
a4a421a484
1 changed files with 0 additions and 4 deletions
  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");