Sat Mar 31 09:56:56 MDT 2012 Test 1 - Is empty on blank list Result: true Test 2 - Is empty on list of 5 Result: false Test 3 - Print Blank list Result: List empty Test 4 - Print List of 1 Result: (1, 0 , HIGH) the first one Test 5 - Print List of 5 Result: (1, 0 , HIGH) the first one (2, 0 , NORMAL) #2 (3, 1 , HIGH) three (4, 1 , NORMAL) four (5, 0 , HIGH) five Test 6 - Remove() from bank list Result: null Test 7 - Remove() from list of 5 Result: (1, 0 , HIGH) the first one Then print the remaining list: (2, 0 , NORMAL) #2 (3, 1 , HIGH) three (4, 1 , NORMAL) four (5, 0 , HIGH) five Test 8 - Remove(5) where 5 is last in list Result: (5, 0 , HIGH) five Then print the remaining list: (1, 0 , HIGH) the first one (2, 0 , NORMAL) #2 (3, 1 , HIGH) three (4, 1 , NORMAL) four Test 9 - Remove(3) where 3 is forth in the list Result: (3, 1 , HIGH) three Then print the remaining list: (1, 0 , HIGH) the first one (2, 0 , NORMAL) #2 (4, 1 , NORMAL) four (5, 0 , HIGH) five Test 10 - Remove(6) where 6 is not in the list Result: null Then print the remaining list: (1, 0 , HIGH) the first one (2, 0 , NORMAL) #2 (3, 1 , HIGH) three (4, 1 , NORMAL) four (5, 0 , HIGH) five