From 0f12ba8c10444256ac73beb1d70e35859ef1e3eb Mon Sep 17 00:00:00 2001 From: hertero Date: Thu, 1 Sep 2022 10:05:01 +0200 Subject: [PATCH] =?UTF-8?q?Testklasse=20getInstance=20hinzugef=C3=BCgt?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../src/solution/SimpleListTest90.java | 14 +++++--------- 1 file changed, 5 insertions(+), 9 deletions(-) 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(); }