-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBSTTest.java
More file actions
224 lines (200 loc) · 5.22 KB
/
BSTTest.java
File metadata and controls
224 lines (200 loc) · 5.22 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
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
import static org.junit.Assert.*;
import java.util.ArrayList;
import java.util.Collections;
import java.util.List;
import java.util.Random;
import org.junit.*;
public class BSTTest {
/* Test isEmpty(): boolean */
@Test
public void testEmpty() {
@SuppressWarnings("rawtypes")
BST testBST = new BST();
assertEquals(true, testBST.isEmpty());
}
@Test
@SuppressWarnings({ "rawtypes", "unchecked" })
public void testNotEmpty() {
BST testBST = new BST();
testBST.put("mal", 3);
assertEquals(false, testBST.isEmpty());
}
/* Test put( K key, V value): boolean */
@Test
@SuppressWarnings({ "rawtypes", "unchecked" })
public void testPutPairs() {
BST testBST = new BST();
assertEquals(true, testBST.put("Mal", 19));
assertEquals(false, testBST.put("Mal", 19));
assertEquals(true, testBST.put("kenz", 19));
}
/* Test replace(K key, V newValue): boolean */
@Test
@SuppressWarnings({ "rawtypes", "unchecked" })
public void testReplaceTrue() {
BST testBST = new BST();
testBST.put("Mal", 19);
testBST.put("Kenz", 20);
testBST.put("Jen", 21);
assertEquals(true, testBST.replace("Mal", 51));
}
@Test
@SuppressWarnings({ "rawtypes", "unchecked" })
public void testReplaceFalse() {
BST testBST = new BST();
testBST.put("Mal", 19);
testBST.put("Kenz", 20);
testBST.put("Jen", 21);
assertEquals(false, testBST.replace("laugh", 51));
}
/* Test remove(K key): boolean */
@Test
@SuppressWarnings({ "rawtypes", "unchecked" })
public void testRemoveNoSuchKey() {
BST testBST = new BST();
testBST.put("q", 19);
testBST.put("k", 19);
testBST.put("s", 19);
testBST.put("r", 19);
testBST.put("t", 19);
testBST.put("b", 19);
testBST.put("w", 19);
testBST.put("a", 19);
testBST.put("l", 19);
testBST.put("+", 19);
assertEquals(false, testBST.remove("8"));
}
@Test
@SuppressWarnings({ "rawtypes", "unchecked" })
public void testRemoveNoChildren() {
BST testBST = new BST();
testBST.put("a", 19);
assertEquals(true, testBST.remove("a"));
assertEquals(0, testBST.size());
assertEquals(testBST.put("a", 19), true);
}
@Test
@SuppressWarnings({ "rawtypes", "unchecked" })
public void testRemoveLeaf() {
BST testBST = new BST();
testBST.put("m", 19);
testBST.put("a", 19);
testBST.put("z", 19);
assertEquals(true, testBST.remove("a"));
assertEquals(true, testBST.put("a", 19));
}
// Test set(K key, V value): void
@Test
@SuppressWarnings({ "rawtypes", "unchecked" })
public void testSetValue() {
BST testBST = new BST();
testBST.set("Mal", 19);
testBST.set("Kenz", 20);
testBST.set("Jen", 21);
assertEquals(19, testBST.get("Mal"));
assertEquals(3, testBST.size());
}
@Test
@SuppressWarnings({ "rawtypes", "unchecked" })
public void testSetChangeValue() {
BST testBST = new BST();
testBST.set("Mal", 19);
testBST.set("Mal", 20);
testBST.set("Jen", 21);
assertEquals(20, testBST.get("Mal"));
}
// Test get(K key): V
@Test
@SuppressWarnings({ "rawtypes", "unchecked" })
public void testgetV() {
BST testBST = new BST();
testBST.put("Mal", 19);
testBST.put("Kenz", 20);
testBST.put("Jen", 21);
assertEquals(19, testBST.get("Mal"));
}
// Test size(): int
@Test
@SuppressWarnings({ "rawtypes"})
public void testSizeZero() {
BST testBST = new BST();
assertEquals(0, testBST.size());
}
@Test
@SuppressWarnings({ "rawtypes", "unchecked" })
public void testSizeSmall() {
BST testBST = new BST();
testBST.put("Mal", 19);
testBST.put("Kenz", 19);
testBST.put("Jen", 19);
assertEquals(3, testBST.size());
}
@Test
@SuppressWarnings({ "rawtypes", "unchecked" })
public void testSizeDuplicates() {
BST testBST = new BST();
testBST.put("Mal", 19);
testBST.put("Mal", 19);
assertEquals(1, testBST.size());
}
@Test
@SuppressWarnings({ "rawtypes", "unchecked" })
public void testSizeLarge() {
BST testBST = new BST();
testBST.put("q", 19);
testBST.put("k", 19);
testBST.put("s", 19);
testBST.put("r", 19);
testBST.put("t", 19);
testBST.put("b", 19);
testBST.put("w", 19);
testBST.put("a", 19);
testBST.put("l", 19);
testBST.put("+", 19);
assertEquals(10, testBST.size());
}
/* Test containsKey(K key): boolean */
@Test
@SuppressWarnings({ "rawtypes", "unchecked" })
public void testContainsKeyTrue() {
BST testBST = new BST();
testBST.put("q", 19);
testBST.put("k", 19);
testBST.put("s", 19);
testBST.put("r", 19);
testBST.put("t", 19);
testBST.put("b", 19);
testBST.put("w", 19);
testBST.put("a", 19);
testBST.put("l", 19);
testBST.put("+", 19);
assertEquals(true, testBST.containsKey("a"));
}
@Test
@SuppressWarnings({ "rawtypes", "unchecked" })
public void testContainsKeyFalse() {
BST testBST = new BST();
testBST.put("q", 19);
testBST.put("k", 19);
testBST.put("s", 19);
testBST.put("r", 19);
testBST.put("t", 19);
testBST.put("b", 19);
testBST.put("w", 19);
testBST.put("a", 19);
testBST.put("l", 19);
testBST.put("+", 19);
assertEquals(false, testBST.containsKey("1"));
}
/* Test keys(): List<K> */
// @Test
// public void testKeys() {
// BST testBST = new BST();
// testBST.put("Mal", 19);
// testBST.put("Kenz", 19);
// List expected = new ArrayList<>();
// expected.add("Kenz");
// expected.add("Mal");
// assertArraysEquals(expected, testBST.keys());
// }
}