You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Personperson = newPerson("That one guy right there", 25, Position.ARSONIST, newArrayList<>(Arrays.asList("Tall", "Insane", "Funny", "something else here idk")), Color.RED);
11
+
Personperson =
12
+
newPerson(
13
+
"That one guy right there",
14
+
25,
15
+
Position.ARSONIST,
16
+
newArrayList<>(Arrays.asList("Tall", "Insane", "Funny", "something else here idk")),
17
+
Color.RED);
12
18
13
19
@Test
14
-
publicvoidtestGetName(){
20
+
publicvoidtestGetName(){
15
21
assertEquals("That one guy right there", person.getName());
16
22
}
17
23
18
24
@Test
19
-
publicvoidtestChangeName(){
25
+
publicvoidtestChangeName(){
20
26
person.changeName("new name right here bruh");
21
27
assertEquals("new name right here bruh", person.getName());
0 commit comments