Some additional changes to the test

This commit is contained in:
Gregory John Casamento 2019-04-10 05:43:25 -04:00
parent 2a7183cb27
commit 51e0e3f45e
3 changed files with 11 additions and 6 deletions

View file

@ -5,7 +5,9 @@
BOOL testUrlCharacterSetEncoding(NSString* decodedString, NSString* encodedString, NSCharacterSet* allowedCharacterSet)
{
NSLog(@"String by adding percent");
NSString* testString = [decodedString stringByAddingPercentEncodingWithAllowedCharacters:allowedCharacterSet];
NSLog(@"String by adding percent, done. test=%@ decoded=%@", testString, decodedString);
return [encodedString isEqualToString: testString];
}