-
Notifications
You must be signed in to change notification settings - Fork 0
/
NPCTest.java
47 lines (36 loc) · 1.07 KB
/
NPCTest.java
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
import static org.junit.Assert.assertEquals;
import org.junit.Test;
public class NPCTest {
@Test
public void testGetFalas() {
NPC carlos;
Item faca;
faca = new Item("faca", "faca");
carlos = new NPC("Carlos", "Eu sou Carlos", "Carlos sou eu", faca);
assertEquals("Eu sou Carlos", carlos.getFalas());
}
@Test
public void testGetFalasChave() {
NPC carlos;
Item faca;
faca = new Item("faca", "faca");
carlos = new NPC("Carlos", "Eu sou Carlos", "Carlos sou eu", faca);
assertEquals("Carlos sou eu", carlos.getFalasChave());
}
@Test
public void testGetItemChave() {
NPC carlos;
Item faca;
faca = new Item("faca", "faca");
carlos = new NPC("Carlos", "Eu sou Carlos", "Carlos sou eu", faca);
assertEquals(faca, carlos.getItemChave());
}
@Test
public void testGetNome() {
NPC carlos;
Item faca;
faca = new Item("faca", "faca");
carlos = new NPC("Carlos", "Eu sou Carlos", "Carlos sou eu", faca);
assertEquals("Carlos", carlos.getNome());
}
}