-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathStringManipulationTest.java
More file actions
240 lines (198 loc) · 7.11 KB
/
Copy pathStringManipulationTest.java
File metadata and controls
240 lines (198 loc) · 7.11 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
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
/*
Aravind Sripada
CS410 - Sara Farag
6/13/2023
This file contains the unit tests to ensure that the StringManipulation class works as intended.
*/
import org.junit.jupiter.api.AfterEach;
import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.Test;
import static org.junit.jupiter.api.Assertions.*;
public class StringManipulationTest {
private StringManipulationInterface manipulatedstring;
@BeforeEach
public void setUp() {
manipulatedstring = new StringManipulation();
}
@AfterEach
public void tearDown() {
manipulatedstring = null;
}
@Test
//this test checks for correct output
public void testGetString() {
String str = manipulatedstring.getString();
assertEquals(null, str);
}
@Test
//this test check for correct output
public void testCount1() {
manipulatedstring.setString("This is my string");
int length = manipulatedstring.count();
assertEquals(4, length);
}
@Test
//this test check for correct output
public void testCount2() {
manipulatedstring.setString("");
int length = manipulatedstring.count();
assertEquals(0, length);
}
@Test
//this test check for correct output
public void testCount3() {
int length = manipulatedstring.count();
assertEquals(0, length);
}
@Test
//this test check for correct output
public void testCount4() {
manipulatedstring.setString("!!!!!! .... ,,,,");
int length = manipulatedstring.count();
assertEquals(0, length);
}
@Test
//this test check for correct output
public void testRemoveNthCharacter1() {
manipulatedstring.setString("I'd b3tt3r put s0me d161ts in this 5tr1n6, right?");
assertEquals("I' bttr uts0e 16tsinths trn6 rgh?", manipulatedstring.removeNthCharacter(3, false));
}
@Test
//this test check for correct output
public void testRemoveNthCharacter2() {
manipulatedstring.setString("I'd b3tt3r put s0me d161ts in this 5tr1n6, right?");
assertEquals("I' b tt r ut s0 e 16 ts in th s tr n6 r gh ?", manipulatedstring.removeNthCharacter(3, true));
}
@Test
//this test check for correct output by leaving the string with its default value
public void testRemoveNthCharacter3() {
assertEquals(null, manipulatedstring.removeNthCharacter(3, false));
}
@Test
//this test check for correct output by giving the string an empty string value
public void testRemoveNthCharacter4() {
manipulatedstring.setString("");
assertEquals("", manipulatedstring.removeNthCharacter(4, true));
}
@Test
//this test checks to see if the IllegalArgumentException is thrown
public void testRemoveNthCharacter5() {
manipulatedstring.setString("Hi Sara!");
assertThrows(IllegalArgumentException.class, () -> {
manipulatedstring.removeNthCharacter(-1, true);
});
}
@Test
//this class checks to see if the IndexOutOfBoundsException is thrown
public void testRemoveNthCharacter6() {
manipulatedstring.setString("Hi Sara!");
assertThrows(IndexOutOfBoundsException.class, () -> {
manipulatedstring.removeNthCharacter(100, true);
});
}
@Test
//this test check for correct output
public void testRemoveNthCharacter7() {
manipulatedstring.setString("CS4420");
assertEquals("CS420", manipulatedstring.removeNthCharacter(4, false));
}
@Test
//this test check for correct output
public void testGetSubStrings1() {
manipulatedstring.setString("This is my string");
String [] sStings = manipulatedstring.getSubStrings(3, 4);
assertEquals(sStings[0], "my");
assertEquals(sStings[1], "string");
}
@Test
//this test check for correct output
public void testGetSubStrings2() throws Exception{
manipulatedstring.setString("I need some sleep");
String [] sStings = manipulatedstring.getSubStrings(1, 3);
assertEquals(sStings[0], "I");
assertEquals(sStings[1], "need");
assertEquals(sStings[2], "some");
}
@Test
//this test checks to see if the IllegalArgumentException is thrown
public void testGetSubStrings3() throws Exception{
manipulatedstring.setString("I need some sleep");
assertThrows(IllegalArgumentException.class, () -> {
manipulatedstring.getSubStrings(1, 0);
});
}
@Test
//this test checks to see if the IllegalArgumentException is thrown
public void testGetSubStrings4() throws Exception{
manipulatedstring.setString("I need some sleep");
assertThrows(IllegalArgumentException.class, () -> {
manipulatedstring.getSubStrings(0, 1);
});
}
@Test
//this test checks to see if the IndexOutOfBoundsException is thrown
public void testGetSubStrings5() {
manipulatedstring.setString("I need some sleep");
assertThrows(IndexOutOfBoundsException.class, () -> {
manipulatedstring.getSubStrings(5, 3);
});
}
@Test
//this test checks to see if the IndexOutOfBoundsException is thrown
public void testGetSubStrings6() throws Exception{
manipulatedstring.setString("I need some sleep");
assertThrows(IndexOutOfBoundsException.class, () -> {
manipulatedstring.getSubStrings(3, 5);
});
}
@Test
//this test check for correct output
public void testRestoreString1() {
manipulatedstring.setString("art");
int [] array;
array=new int[]{1,0,2};
String restoreString = manipulatedstring.restoreString(array);
assertEquals(restoreString, "rat");
}
@Test
//this test check to see if the IndexOutOfBoundsException is thrown
public void testRestoreString2() {
manipulatedstring.setString("acro");
int[] array;
array = new int[] {3, 2, -1, 0};
assertThrows(IndexOutOfBoundsException.class, () -> {
manipulatedstring.restoreString(array);
});
}
@Test
//this test check to see if the IndexOutOfBoundsException is thrown
public void testRestoreString3()
{
manipulatedstring.setString("acro");
int[] array;
array = new int[] {3, 2, 1, 4};
assertThrows(IndexOutOfBoundsException.class, () -> {
manipulatedstring.restoreString(array);
});
}
@Test
//this test check to see if the IllegalArgumentException is thrown
public void testRestoreString4()
{
manipulatedstring.setString("acro");
int[] array;
array = new int[] {3, 2, 1};
assertThrows(IllegalArgumentException.class, () -> {
manipulatedstring.restoreString(array);
});
}
@Test
//this test check for correct output
public void testRestoreString5() {
manipulatedstring.setString("UnitTest");
int [] array;
array=new int[]{4, 5, 6, 7, 0, 1, 2, 3};
String restoreString = manipulatedstring.restoreString(array);
assertEquals(restoreString, "TestUnit");
}
}