Browse Source

Anpassung der Klasse SimpleLinkedListTest

T_SS18_List
hertero 3 years ago
parent
commit
efa4f262f2
  1. 8
      SimpleLinkedList/src/solution/SimpleLinkedListTest.java

8
SimpleLinkedList/src/solution/SimpleLinkedListTest.java

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

Loading…
Cancel
Save