Browse Source

Anpassung der Klasse SimpleLinkedListTest

vollständige_und_weitere_testate
hertero 3 years ago
committed by chris
parent
commit
5446e7352f
  1. 8
      SimpleLinkedList/src/solution/SimpleLinkedListTest.java

8
SimpleLinkedList/src/solution/SimpleLinkedListTest.java

@ -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<>();
}

Loading…
Cancel
Save