1 // 2 // CommonTokenTest.h 3 // ANTLR 4 // 5 // Created by Ian Michell on 25/05/2010. 6 // Copyright 2010 Ian Michell. All rights reserved. 7 // 8 9 #import <SenTestingKit/SenTestingKit.h> 10 11 12 @interface CommonTokenTest : SenTestCase 13 { 14 15 } 16 17 -(void) test01InitAndRelease; 18 -(void) test02GetEOFToken; 19 -(void) test03InitWithTokenType; 20 -(void) test04InitWithTokenTypeAndText; 21 -(void) test05InitWithCharStream; 22 -(void) test06InitWithToken; 23 -(void) test07TokenDescription; 24 25 @end 26