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