Changeset 23067
- Timestamp:
- 04/03/2008 05:46:19 PM (8 months ago)
- Files:
-
- trunk/UnitTests/TestHyperlinkScanner.h (modified) (1 diff)
- trunk/UnitTests/TestHyperlinkScanner.m (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/UnitTests/TestHyperlinkScanner.h
r23061 r23067 19 19 - (void)testGreaterThanBeforeOpenParenthesis; 20 20 - (void)testGreaterThanBeforeCloseParenthesis; 21 - (void)testGreaterThanBeforeOpenCurlyBracket; 22 - (void)testGreaterThanBeforeCloseCurlyBracket; 23 - (void)testGreaterThanBeforeDumbQuote; 24 - (void)testGreaterThanBeforeApostrophe; 25 - (void)testGreaterThanBeforeHyphenMinus; 26 - (void)testGreaterThanBeforeComma; 27 - (void)testGreaterThanBeforeColon; 28 - (void)testGreaterThanBeforeSemicolon; 21 29 22 30 @end trunk/UnitTests/TestHyperlinkScanner.m
r23061 r23067 43 43 [self testGreaterThanBeforeString:@")"]; 44 44 } 45 - (void)testGreaterThanBeforeOpenCurlyBracket { 46 [self testGreaterThanBeforeString:@"{"]; 47 } 48 - (void)testGreaterThanBeforeCloseCurlyBracket { 49 [self testGreaterThanBeforeString:@"}"]; 50 } 51 - (void)testGreaterThanBeforeDumbQuote { 52 [self testGreaterThanBeforeString:@"\""]; 53 } 54 - (void)testGreaterThanBeforeApostrophe { 55 [self testGreaterThanBeforeString:@"'"]; 56 } 57 - (void)testGreaterThanBeforeHyphenMinus { 58 [self testGreaterThanBeforeString:@"-"]; 59 } 60 - (void)testGreaterThanBeforeComma { 61 [self testGreaterThanBeforeString:@","]; 62 } 63 - (void)testGreaterThanBeforeColon { 64 [self testGreaterThanBeforeString:@":"]; 65 } 66 - (void)testGreaterThanBeforeSemicolon { 67 [self testGreaterThanBeforeString:@";"]; 68 } 45 69 46 70 @end