LinkedListNode node3 = null;
protected void setUp() throws Exception {
super.setUp();
this.list = new LinkedList();
this.node1 = new AbstractBaseLinkedListNode();
this.node2 = new AbstractBaseLinkedListNode();
this.node3 = new AbstractBaseLinkedListNode();
}