Browse Source

Anpassung der getInstance-Methoden

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

8
SimpleLinkedList/src/solution/SimpleLinkedListTest.java

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

Loading…
Cancel
Save