@Test(expectedExceptions=IndexOutOfBoundsException.class)
public static void testClearWithIndexOutOfBounds() {
FixedSizeBitSet set=new FixedSizeBitSet(10);
set.clear(10);
}
@Test(expectedExceptions=IndexOutOfBoundsException.class)
public static void testGetWithIndexOutOfBounds() {
FixedSizeBitSet set=new FixedSizeBitSet(10);