-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathStringManipulationTest.java
More file actions
202 lines (167 loc) · 6 KB
/
Copy pathStringManipulationTest.java
File metadata and controls
202 lines (167 loc) · 6 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
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
public void testCount1() {
manipulatedstring.setString("This is my string");
int length = manipulatedstring.count();
assertEquals(4, length);
}
@Test
public void testCount2() {
manipulatedstring.setString("Testing for string");
int length = manipulatedstring.count();
assertEquals(3, length);
}
@Test
public void testCount3() {
manipulatedstring.setString("Testing testing");
int length = manipulatedstring.count();
assertEquals(2, length);
}
@Test
public void testCount4() {
manipulatedstring.setString("");
int length = manipulatedstring.count();
assertEquals(0, length);
}
@Test
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
public void testRemoveNthCharacter2() {
manipulatedstring.setString("Hi this is the message");
assertEquals("H h s i h e s g ", manipulatedstring.removeNthCharacter(2, true));
}
@Test
public void testRemoveNthCharacter3() {
manipulatedstring.setString("This message should have less character deleted");
assertEquals("This me sage sh uld hav less c aracter deleted", manipulatedstring.removeNthCharacter(8, true));
}
@Test
public void testRemoveNthCharacter4() {
manipulatedstring.setString("This message should have only the last character deleted");
assertEquals("This message should have only the last character delete", manipulatedstring.removeNthCharacter(56, false));
}
@Test
public void testRemoveNthCharacter5() {
manipulatedstring.setString("This message should be unreadable");
assertThrows(
IndexOutOfBoundsException.class, () -> {
assertEquals("", manipulatedstring.removeNthCharacter(100, false));
}
);
}
@Test
public void testRemoveNthCharacter6() {
manipulatedstring.setString("This message is meant to be deleted");
assertEquals("", manipulatedstring.removeNthCharacter(1, false));
}
@Test
public void testRemoveNthCharacter7() {
manipulatedstring.setString("The space");
assertEquals(" ", manipulatedstring.removeNthCharacter(1, true));
}
@Test
public void testGeSubStrings1() {
manipulatedstring.setString("This is my string");
String [] sStings = manipulatedstring.getSubStrings(3, 4);
assertEquals("my", sStings[0]);
assertEquals("string", sStings[1]);
}
@Test
public void testGeSubStrings2() {
manipulatedstring.setString("This change is requested by Caleb");
assertThrows(
IllegalArgumentException.class, () -> {
String [] sStings = manipulatedstring.getSubStrings(6, 1);
}
);
}
@Test
public void testGeSubStrings3() {
manipulatedstring.setString("This is a odd string");
String [] sStings = manipulatedstring.getSubStrings(1, 3);
assertEquals("This", sStings[0]);
assertEquals("a", sStings[2]);
}
@Test
public void testGeSubStrings4() {
manipulatedstring.setString("This string is a very long string");
String [] sStings = manipulatedstring.getSubStrings(2, 4);
assertEquals("string", sStings[0]);
assertEquals("a", sStings[2]);
}
@Test
public void testGeSubStrings5() {
manipulatedstring.setString("This sting will return the first and last string");
String [] sStings = manipulatedstring.getSubStrings(1, 9);
assertEquals("This", sStings[0]);
assertEquals("string", sStings[8]);
}
@Test
public void testGeSubStrings6() {
manipulatedstring.setString("This string is the last test string");
assertThrows(
IndexOutOfBoundsException.class, () -> {
String [] sStings = manipulatedstring.getSubStrings(1, 100);
}
);
}
@Test
public void testRestoreString1() {
manipulatedstring.setString("art");
int [] array;
array = new int[]{1,0,2};
String restoreString = manipulatedstring.restoreString(array);
assertEquals("rat", restoreString);
}
@Test
public void testRestoreString2() {
manipulatedstring.setString("UnitTest");
int [] array;
array = new int[]{4,5,6,7,0,1,2,3};
String restoreString = manipulatedstring.restoreString(array);
assertEquals("TestUnit", restoreString);
}
@Test
public void testRestoreString3() {
manipulatedstring.setString("eat");
int [] array;
array = new int[]{2,0,1};
String restoreString = manipulatedstring.restoreString(array);
assertEquals("tea", restoreString);
}
@Test
public void testRestoreString4() {
manipulatedstring.setString("cat");
int [] array;
array=new int[]{1,0,2};
String restoreString = manipulatedstring.restoreString(array);
assertEquals("act", restoreString);
}
@Test
public void testRestoreString5() {
manipulatedstring.setString("");
int [] array;
array=new int[]{2,1,0};
assertThrows(
IllegalArgumentException.class, () -> {
String restoreString = manipulatedstring.restoreString(array);
}
);
}
}