From 22fb23f3e2d3e237391dbfb3b6181e8b43904535 Mon Sep 17 00:00:00 2001 From: hertero Date: Tue, 30 Aug 2022 12:08:56 +0200 Subject: [PATCH] Testklasse SimpleListTest90 erstellt --- .../src/test/SimpleListTest90.java | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 SimpleLinkedList/src/test/SimpleListTest90.java diff --git a/SimpleLinkedList/src/test/SimpleListTest90.java b/SimpleLinkedList/src/test/SimpleListTest90.java new file mode 100644 index 0000000..1d9072e --- /dev/null +++ b/SimpleLinkedList/src/test/SimpleListTest90.java @@ -0,0 +1,18 @@ +package test; + +import solution.ISimpleList; +import solution.Node; + +public class SimpleListTest90 { + + protected ISimpleList getInstance1() { + // TODO Auto-generated method stub + return null; + } + + protected ISimpleList> getInstance2() { + // TODO Auto-generated method stub + return null; + } + +}