xref: /aosp_15_r20/external/antlr/runtime/ObjC/Framework/test/runtime/sets/ANTLRBitSetTest.h (revision 16467b971bd3e2009fad32dd79016f2c7e421deb)
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) testOrInPlace;
23 -(void) testDescription;
24 
25 @end
26