12931294129512961297129812991300130113021303
list2.add( 3 ); list2.add( 1 ); list2.add( 2 ); list2.add( 5 ); list2.add( 4 ); assertEquals( 5, list2.max() ); assertEquals( 1, list2.min() ); try { TIntList list3 = new TIntLinkedList(); list3.min();
13071308130913101311131213131314131513161317
// Expected } try { TIntList list3 = new TIntLinkedList(); list3.max(); fail( "Expected IllegalStateException" ); } catch ( IllegalStateException ex ) { // Expected }
13291330133113321333133413351336133713381339
list2.add( 3 ); list2.add( 1 ); list2.add( 2 ); list2.add( 5 ); list2.add( 4 ); assertEquals( 5, list2.max() ); assertEquals( 1, list2.min() ); try { TIntList list3 = new TIntArrayList(); list3.min();
13431344134513461347134813491350135113521353
// Expected } try { TIntList list3 = new TIntArrayList(); list3.max(); fail( "Expected IllegalStateException" ); } catch ( IllegalStateException ex ) { // Expected }