-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathSasStringTest.m
44 lines (36 loc) · 1.35 KB
/
SasStringTest.m
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
//
// SasStringTest.m
// CronniX
//
// Created by Sven A. Schmidt on Tue Mar 16 2004.
// Copyright (c) 2004 __MyCompanyName__. All rights reserved.
//
#import "SasStringTest.h"
#import "SasString.h"
@implementation SasStringTest
- (void)testStringByTrimmingWhitespaceAndNewline {
[ self assert: [ @"\nbla test " stringByTrimmingWhitespaceAndNewline]
equals: @"bla test" ];
[ self assert: [ @" bla test\n" stringByTrimmingWhitespaceAndNewline]
equals: @"bla test" ];
}
- (void)testStartsWithString {
[ self assertTrue: [ @"blabla" startsWithString: @"bla" ] message: @"positive test failed" ];
[ self assertFalse: [ @"ba" startsWithString: @"bla" ] message: @"negative test failed" ];
}
- (void)testStartsWithStringIgnoringWhitespace {
[ self assertTrue: [ @" bla" startsWithStringIgnoringWhitespace: @"bla" ]];
[ self assertTrue: [ @"\tbla" startsWithStringIgnoringWhitespace: @"bla" ]];
[ self assertFalse: [ @"ba" startsWithStringIgnoringWhitespace: @"bla" ]];
}
- (void)testFieldCount {
NSCharacterSet *ws = [ NSCharacterSet whitespaceCharacterSet ];
id line = @" 30\t5\t \t6 4 * third Task\n";
int fieldCount = [ line fieldCountSeperatedBy: ws ];
[ self assertInt: fieldCount equals: 7 ];
}
- (void)testStartsWithNumer {
id s = @"test";
[ self assertFalse: [ s startsWithNumber ]];
}
@end