Browse Source

Testklasse SimpleListTest90 erstellt

vollständige_und_weitere_testate
hertero 3 years ago
committed by chris
parent
commit
d677d7fd86
  1. 34
      SimpleLinkedList/src/solution/SimpleListTest90.java

34
SimpleLinkedList/src/solution/SimpleListTest90.java

@ -0,0 +1,34 @@
package solution;
import static org.junit.jupiter.api.Assertions.assertEquals;
import org.junit.Test;
import org.junit.jupiter.api.BeforeEach;
public abstract class SimpleListTest90 {
//ISimpleList<Integer> list;
ISimpleList<Node<Integer>> nodeList;
protected ISimpleList<Integer> getInstance1() {
// TODO Auto-generated method stub
return null;
}
protected ISimpleList<Node<Integer>> getInstance2() {
// TODO Auto-generated method stub
return null;
}
@BeforeEach
void setUp() throws Exception{
nodeList = getInstance2();
}
@Test
void testAdd(Node<Integer> node) {
boolean actual = nodeList.add(node);
assertEquals(true, actual);
}
}
Loading…
Cancel
Save