|
@ -1,5 +1,7 @@ |
|
|
package solution; |
|
|
package solution; |
|
|
import testat.*; |
|
|
//import testat.*;
|
|
|
|
|
|
|
|
|
|
|
|
import test.SimpleListTest90; |
|
|
|
|
|
|
|
|
public class SimpleLinkedListTest extends SimpleListTest90{ |
|
|
public class SimpleLinkedListTest extends SimpleListTest90{ |
|
|
|
|
|
|
|
@ -9,7 +11,7 @@ public class SimpleLinkedListTest extends SimpleListTest90{ |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
@Override |
|
|
@Override |
|
|
protected ISimpleList<Ticket<Integer>> getInstance2() { |
|
|
protected ISimpleList<Node<Integer>> getInstance2() { |
|
|
return new SimpleLinkedList<>(); |
|
|
return new SimpleLinkedList<>(); |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|