forked from gavinkwoe/todparsekit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTDLetterTest.m
59 lines (44 loc) · 1.18 KB
/
TDLetterTest.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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
//
// PKLetterTest.m
// ParseKit
//
// Created by Todd Ditchendorf on 8/15/08.
// Copyright 2009 Todd Ditchendorf. All rights reserved.
//
#import "TDLetterTest.h"
@interface PKAssembly ()
- (BOOL)hasMore;
@end
@implementation TDLetterTest
- (void)test123 {
s = @"123";
a = [PKCharacterAssembly assemblyWithString:s];
TDEqualObjects(@"[]^123", [a description]);
p = [PKLetter letter];
result = [p bestMatchFor:a];
TDNotNil(a);
TDNil(result);
TDTrue([a hasMore]);
}
- (void)testAbc {
s = @"abc";
a = [PKCharacterAssembly assemblyWithString:s];
TDEqualObjects(@"[]^abc", [a description]);
p = [PKLetter letter];
result = [p bestMatchFor:a];
TDNotNil(a);
TDEqualObjects(@"[a]a^bc", [result description]);
TDTrue([result hasMore]);
}
- (void)testRepetition {
s = @"abc";
a = [PKCharacterAssembly assemblyWithString:s];
TDEqualObjects(@"[]^abc", [a description]);
p = [PKLetter letter];
PKParser *r = [PKRepetition repetitionWithSubparser:p];
result = [r bestMatchFor:a];
TDNotNil(a);
TDEqualObjects(@"[a, b, c]abc^", [result description]);
TDFalse([result hasMore]);
}
@end