-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTester.java
More file actions
147 lines (119 loc) · 4.14 KB
/
Copy pathTester.java
File metadata and controls
147 lines (119 loc) · 4.14 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
import java.lang.NullPointerException;
/**
* Tester for singly linked list
*
* @author Sachith Ranaweera
* @version 1.0 2016-10-26
*/
public class Tester
{
public static void main(String[] argument)
{
SinglyLinkedList list = new SinglyLinkedList();
Node a = new Node (5, null);
Node c = new Node (11, null);
// Test 1:
int test = 1;
System.out.println("\ntest " + test++ + ": toString()\n"
+ list);
System.out.println("\ntest " + test++ + ": toString()\n"
+ list);
// Test 2:
System.out.println("\ntest " + test++ + ": isEmpty()\n"
+ list.isEmpty());
// Test 3:
list.insertAtHead(a);
System.out.println("\ntest " + test++ + ": toString()\n"
+ list);
// Test 4:
list.insertAtHead(c);
System.out.println("\ntest " + test++ + ": toString()\n"
+ list);
// test 5:
list.delete(c);
System.out.println("\ntest " + test++ + ": delete()\n"
+ list);
// Test 4:
try
{
list.insert(8, null);
}
catch (NullPointerException exception)
{
System.out.println("\nexception thrown and cought");
} // end of catch (NullPointerException exception)
System.out.println("\ntest " + test++ + ": toString()\n"
+ list);
// Test 5:
try
{
list.insert(8, a);
}
catch (NullPointerException exception)
{
System.out.println("\nexception thrown and cought");
} // end of catch (NullPointerException exception)
System.out.println("\ntest " + test++ + ": toString()\n"
+ list);
// Test 6:
try
{
list.insert(null, null);
}
catch (NullPointerException exception)
{
System.out.println("\nexception thrown and cought");
} // end of catch (NullPointerException exception)
System.out.println("\ntest " + test++ + ": toString()\n"
+ list);
// Test 7:
try
{
Node b = new Node (9, null);
list.insert(b, a.getNext());
}
catch (NullPointerException exception)
{
System.out.println("\nexception thrown and cought");
} // end of catch (NullPointerException exception)
System.out.println("\ntest " + test++ + ": toString()\n"
+ list);
// Test 8:
list.insertAtHead(6);
System.out.println("\ntest " + test++ + ": insertAthead()\n"
+ list);
// Test 9:
list.delete(list.getTailWithoutUsingTailReference());
System.out.println("\ntest " + test++ + ": delete()\n"
+ list);
// Test 9:
Node newNode = new Node(7,null);
list.insertAtHead(newNode);
System.out.println("\ntest " + test++ + ": insertAthead()\n"
+ list);
// Test 10:
list.insertAtTail(8);
System.out.println("\ntest " + test++ + ": insertAthead()\n"
+ list);
// Test 11:
System.out.println("\ntest " + test++ + ": isEmpty()\n"
+ list.isEmpty());
// Test 12:
System.out.println("\ntest " + test++ + ": contains()\n"
+ list.contains(8));
// Test 13:
System.out.println("\ntest " + test++ + ": contains()\n"
+ list.contains(3));
// Test 15:
System.out.println("\ntest " + test++ + ": getHead()()\n"
+ list.getHead());
// Test 15:
System.out.println("\ntest " + test++ + ": getTail()\n"
+ list.getTailWithoutUsingTailReference());
// Test 14:
list.delete(list.getTail());
System.out.println("\ntest " + test++ + ": insertAthead()\n"
+ list);
System.out.println(list.terseString());
} // end of main(String[] argument)
} // end of class Tester