diff --git a/SimpleLinkedList/src/solution/SimpleListTest90.java b/SimpleLinkedList/src/solution/SimpleListTest90.java index 9580b62..a53a297 100644 --- a/SimpleLinkedList/src/solution/SimpleListTest90.java +++ b/SimpleLinkedList/src/solution/SimpleListTest90.java @@ -6,8 +6,9 @@ import org.junit.jupiter.api.BeforeEach; public abstract class SimpleListTest90 { - //ISimpleList list; + ISimpleList list; ISimpleList> nodeList; + protected Node nodeNull = new Node(null); protected Node node0 = new Node(0); protected Node node1 = new Node(1); @@ -15,18 +16,13 @@ public abstract class SimpleListTest90 { protected Node node3 = new Node(3); protected Node node4 = new Node(4); - protected ISimpleList getInstance1() { - // TODO Auto-generated method stub - return null; - } + protected abstract ISimpleList getInstance1(); - protected ISimpleList> getInstance2() { - // TODO Auto-generated method stub - return null; - } + protected abstract ISimpleList> getInstance2(); @BeforeEach void setUp() throws Exception{ + list = getInstance1(); nodeList = getInstance2(); }