public void testClear() throws Exception {
TIntSet set = new TIntHashSet();
set.addAll( new int[]{1, 2, 3} );
assertEquals( "size was not 3", 3, set.size() );
set.clear();
assertEquals( "initial size was not 0", 0, set.size() );
}
public void testSerialize() throws Exception {