Home | History | Annotate | Download | only in sets
      1 //
      2 //  ANTLRBitSetTest.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 @interface ANTLRBitSetTest : SenTestCase
     12 {
     13 
     14 }
     15 
     16 -(void) testWithBitData;
     17 -(void) testWithBitArray;
     18 -(void) testAdd;
     19 -(void) testRemove;
     20 -(void) testCopyBitSet;
     21 -(void) testOr;
     22 -(void) testDescription;
     23 
     24 @end
     25