Ejemplo n.º 1
0
 @Test
 public void testNumLinkedListInsert() {
   NumLinkedList list = new NumLinkedList();
   list.insert(7, 7.0);
   assertTrue(
       "Method INSERT put a new element before the i-th element"
           + " of the sequence (using 0 for the index of the first element).",
       true);
 }