super.tearDown();
}
public void testConstructors() throws Exception {
TIntSet raw_set = new TIntHashSet();
Set<Integer> set = TDecorators.wrap( raw_set );
assertNotNull( set );
Integer[] ints = {1138, 42, 86, 99, 101};
set.addAll( Arrays.asList( ints ) );
Set<Integer> copy = new HashSet<Integer>( set );
assertTrue( "set not a copy: " + set + ", " + copy, set.equals( copy ) );
TIntSet raw_another = new TIntHashSet( 20 );
Set<Integer> another = TDecorators.wrap( raw_another );
another.addAll( Arrays.asList( ints ) );
assertTrue( "set not equal: " + set + ", " + copy, set.equals( another ) );
raw_another = new TIntHashSet( 2, 1.0f );