1 // 2 // ANTLRFastQueueTest.h 3 // ANTLR 4 // 5 // Created by Ian Michell on 13/05/2010. 6 // Copyright 2010 Ian Michell. All rights reserved. 7 // 8 9 #import <SenTestingKit/SenTestingKit.h> 10 11 12 @interface ANTLRFastQueueTest : SenTestCase { 13 14 } 15 16 -(void) testInit; 17 -(void) testAddAndGet; 18 -(void) testInvalidElementIndex; 19 -(void) testHead; 20 -(void) testClear; 21 -(void) testDescription; 22 -(void) testRemove; 23 24 @end 25