|  | @ -6,8 +6,9 @@ import org.junit.jupiter.api.BeforeEach; | 
			
		
	
		
		
			
				
					|  |  | 
 |  |  | 
 | 
			
		
	
		
		
			
				
					|  |  | public abstract class SimpleListTest90 { |  |  | public abstract class SimpleListTest90 { | 
			
		
	
		
		
			
				
					|  |  | 
 |  |  | 
 | 
			
		
	
		
		
			
				
					
					|  |  | 	//ISimpleList<Integer> list;
 |  |  | 	ISimpleList<Integer> list; | 
			
				
				
			
		
	
		
		
	
		
		
			
				
					|  |  | 	ISimpleList<Node<Integer>> nodeList; |  |  | 	ISimpleList<Node<Integer>> nodeList; | 
			
		
	
		
		
			
				
					|  |  |  |  |  | 	 | 
			
		
	
		
		
			
				
					|  |  | 	protected Node<Integer> nodeNull = new Node<Integer>(null); |  |  | 	protected Node<Integer> nodeNull = new Node<Integer>(null); | 
			
		
	
		
		
			
				
					|  |  | 	protected Node<Integer> node0 = new Node<Integer>(0); |  |  | 	protected Node<Integer> node0 = new Node<Integer>(0); | 
			
		
	
		
		
			
				
					|  |  | 	protected Node<Integer> node1 = new Node<Integer>(1); |  |  | 	protected Node<Integer> node1 = new Node<Integer>(1); | 
			
		
	
	
		
		
			
				
					|  | @ -15,18 +16,13 @@ public abstract class SimpleListTest90 { | 
			
		
	
		
		
			
				
					|  |  | 	protected Node<Integer> node3 = new Node<Integer>(3); |  |  | 	protected Node<Integer> node3 = new Node<Integer>(3); | 
			
		
	
		
		
			
				
					|  |  | 	protected Node<Integer> node4 = new Node<Integer>(4); |  |  | 	protected Node<Integer> node4 = new Node<Integer>(4); | 
			
		
	
		
		
			
				
					|  |  | 	 |  |  | 	 | 
			
		
	
		
		
			
				
					
					|  |  | 	protected ISimpleList<Integer> getInstance1() { |  |  | 	protected abstract ISimpleList<Integer> getInstance1(); | 
			
				
				
			
		
	
		
		
			
				
					|  |  | 		// TODO Auto-generated method stub
 |  |  |  | 
			
		
	
		
		
			
				
					|  |  | 		return null; |  |  |  | 
			
		
	
		
		
			
				
					|  |  | 	} |  |  |  | 
			
		
	
		
		
	
		
		
			
				
					|  |  | 
 |  |  | 
 | 
			
		
	
		
		
			
				
					
					|  |  | 	protected ISimpleList<Node<Integer>> getInstance2() { |  |  | 	protected abstract ISimpleList<Node<Integer>> getInstance2(); | 
			
				
				
			
		
	
		
		
			
				
					|  |  | 		// TODO Auto-generated method stub
 |  |  |  | 
			
		
	
		
		
			
				
					|  |  | 		return null; |  |  |  | 
			
		
	
		
		
			
				
					|  |  | 	} |  |  |  | 
			
		
	
		
		
	
		
		
			
				
					|  |  | 
 |  |  | 
 | 
			
		
	
		
		
			
				
					|  |  | 	@BeforeEach |  |  | 	@BeforeEach | 
			
		
	
		
		
			
				
					|  |  | 	void setUp() throws Exception{ |  |  | 	void setUp() throws Exception{ | 
			
		
	
		
		
			
				
					|  |  |  |  |  | 		list = getInstance1(); | 
			
		
	
		
		
			
				
					|  |  | 		nodeList = getInstance2(); |  |  | 		nodeList = getInstance2(); | 
			
		
	
		
		
			
				
					|  |  | 	} |  |  | 	} | 
			
		
	
		
		
			
				
					|  |  | 	 |  |  | 	 | 
			
		
	
	
		
		
			
				
					|  | 
 |