1 // 2 // ANTLRStringStreamTest.h 3 // ANTLR 4 // 5 // Created by Ian Michell on 12/05/2010. 6 // Copyright 2010 Ian Michell. All rights reserved. 7 // 8 9 #import <SenTestingKit/SenTestingKit.h> 10 11 12 @interface ANTLRStringStreamTest : SenTestCase { 13 14 } 15 16 -(void) testInitWithInput; 17 -(void) testConsumeAndReset; 18 -(void) testConsumeWithNewLine; 19 -(void) testSeek; 20 -(void) testSeekMarkAndRewind; 21 -(void) testLAEOF; 22 -(void) testLTEOF; // same as LA 23 24 @end 25