File: test03.m

package info (click to toggle)
gnustep-base 1.31.1-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 26,580 kB
  • sloc: objc: 239,446; ansic: 36,519; cpp: 122; sh: 112; makefile: 100; xml: 32
file content (69 lines) | stat: -rw-r--r-- 3,478 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
#import "Testing.h"
#import <Foundation/NSAutoreleasePool.h>
#import <Foundation/NSCharacterSet.h>
#import <Foundation/NSString.h>

int main()
{
  NSAutoreleasePool   *arp = [NSAutoreleasePool new];
  NSCharacterSet *ws = [NSCharacterSet whitespaceAndNewlineCharacterSet];
  PASS([[@"" stringByTrimmingLeadSpaces] isEqual:@""],
       "'' stringByTrimmingLeadSpaces == ''"); 
  PASS([[@"home" stringByTrimmingLeadSpaces] isEqual:@"home"],
       "'home' stringByTrimmingLeadSpaces == 'home'"); 
  PASS([[@" hello" stringByTrimmingLeadSpaces] isEqual:@"hello"],
       "' hello' stringByTrimmingLeadSpaces == 'hello'"); 
  PASS([[@"\thello" stringByTrimmingLeadSpaces] isEqual:@"hello"],
       "'\\thello' stringByTrimmingLeadSpaces == 'hello'"); 
  PASS([[@"\nhello" stringByTrimmingLeadSpaces] isEqual:@"hello"],
       "'\\nhello' stringByTrimmingLeadSpaces == 'hello'"); 
  
  PASS([[@"" stringByTrimmingTailSpaces] isEqual:@""],
       "'' stringByTrimmingTailSpaces == ''"); 
  PASS([[@"home" stringByTrimmingTailSpaces] isEqual:@"home"],
       "'home' stringByTrimmingTailSpaces == 'home'"); 
  PASS([[@"hello " stringByTrimmingTailSpaces] isEqual:@"hello"],
       "'hello ' stringByTrimmingTailSpaces == 'hello'"); 
  PASS([[@"hello\t" stringByTrimmingTailSpaces] isEqual:@"hello"],
       "'hello\\t' stringByTrimmingTailSpaces == 'hello'"); 
  PASS([[@"hello\n" stringByTrimmingTailSpaces] isEqual:@"hello"],
       "'hello\\n' stringByTrimmingTailSpaces == 'hello'"); 
  
  PASS([[@"" stringByTrimmingSpaces] isEqual:@""],
       "'' stringByTrimmingSpaces == ''"); 
  PASS([[@"home" stringByTrimmingSpaces] isEqual:@"home"],
       "'home' stringByTrimmingSpaces == 'home'"); 
  PASS([[@" hello" stringByTrimmingSpaces] isEqual:@"hello"],
       "' hello' stringByTrimmingSpaces == 'hello'"); 
  PASS([[@"\thello" stringByTrimmingSpaces] isEqual:@"hello"],
       "'\\thello' stringByTrimmingSpaces == 'hello'"); 
  PASS([[@"\nhello" stringByTrimmingSpaces] isEqual:@"hello"],
       "'\\nhello' stringByTrimmingSpaces == 'hello'"); 
  
  PASS([[@"home" stringByTrimmingCharactersInSet:ws] isEqual: @"home"],
       "'home' stringByTrimmingCharactersInSet == 'home'"); 
  PASS([[@"hello\n" stringByTrimmingCharactersInSet:ws] isEqual: @"hello"],
       "'hello\\n' stringByTrimmingCharactersInSet == 'hello'"); 
  PASS([[@"\nhello" stringByTrimmingCharactersInSet:ws] isEqual: @"hello"],
       "'\\nhello' stringByTrimmingCharactersInSet == 'hello'"); 
  PASS([[@"\nhello\n" stringByTrimmingCharactersInSet:ws] isEqual: @"hello"],
       "'\nhello\n' stringByTrimmingCharactersInSet == 'hello'"); 
  PASS([[@"\n  \n" stringByTrimmingCharactersInSet:ws] isEqual: @""],
       "'\\n  \\n' stringByTrimmingCharactersInSet == ''"); 
  
  PASS([[@"hello" stringByPaddingToLength:3 
                               withString:@"." 
			  startingAtIndex:0] isEqual:@"hel"],
       "'hello' stringByPaddingToLength:3 withString:'.' startingAtIndex:0 == 'hel'");
  PASS([[@"hello" stringByPaddingToLength:8 
                               withString:@"." 
			  startingAtIndex:0] isEqual:@"hello..."],
       "'hello' stringByPaddingToLength:8 withString:'.' startingAtIndex:0 == 'hello...'");
  PASS([[@"hello" stringByPaddingToLength:8 
                               withString:@"xy" 
			  startingAtIndex:1] isEqual:@"helloyxy"],
       "'hello' stringByPaddingToLength:8 withString:'xy' startingAtIndex:0 == 'helloyxy'");
   
  [arp release]; arp = nil;
  return 0;
}