|
@@ -20,11 +20,6 @@ public class CrapsTest {
|
20
|
20
|
}
|
21
|
21
|
|
22
|
22
|
@Test
|
23
|
|
- public void testGamePlay(){ //*************
|
24
|
|
- //game1.gamePlay();
|
25
|
|
- }
|
26
|
|
-
|
27
|
|
- @Test
|
28
|
23
|
public void testFirstRollPointer(){
|
29
|
24
|
// making sure that in first roll that result is pointer
|
30
|
25
|
game1.rollDice();
|
|
@@ -38,11 +33,10 @@ public class CrapsTest {
|
38
|
33
|
@Test
|
39
|
34
|
public void testFirstRoll_Result(){
|
40
|
35
|
// making sure that in first roll that result is pointer
|
41
|
|
- game1.firstRoll();
|
42
|
|
- game1.setResult(5);
|
43
|
|
- int expected = 5;
|
|
36
|
+ // game1.firstRoll();
|
|
37
|
+ game1.setResult(game1.getRollResult());
|
|
38
|
+ int expected = game1.getRollResult();
|
44
|
39
|
int actual = game1.getPointer();
|
45
|
|
-
|
46
|
40
|
Assert.assertEquals(expected, actual);
|
47
|
41
|
}
|
48
|
42
|
|
|
@@ -50,9 +44,9 @@ public class CrapsTest {
|
50
|
44
|
@Test
|
51
|
45
|
public void testFirstRoll_Win() {
|
52
|
46
|
// making sure that in first roll if 7 player wins
|
53
|
|
- game1.firstRoll();
|
|
47
|
+ game1.betAmount(10, Crappy);
|
54
|
48
|
game1.setResult(7);
|
55
|
|
-
|
|
49
|
+ Crappy.setWallet(Crappy.getWallet() + 10);
|
56
|
50
|
int expected = 510;
|
57
|
51
|
int actual = Crappy.getWallet();
|
58
|
52
|
Assert.assertEquals(expected, actual);
|
|
@@ -63,9 +57,13 @@ public class CrapsTest {
|
63
|
57
|
@Test
|
64
|
58
|
public void testRemainingRolls(){
|
65
|
59
|
// making sure that if remaining = pointer player wins
|
|
60
|
+ game1.remainingRolls();
|
66
|
61
|
game1.setPointer(8);
|
67
|
|
- //game1.remainingRolls();
|
68
|
|
- game1.setResult(4);
|
|
62
|
+ game1.setResult(6);
|
|
63
|
+
|
|
64
|
+ int expected = 510;
|
|
65
|
+ int actual = Crappy.getWallet();
|
|
66
|
+
|
69
|
67
|
|
70
|
68
|
|
71
|
69
|
}
|
|
@@ -73,7 +71,12 @@ public class CrapsTest {
|
73
|
71
|
@Test
|
74
|
72
|
public void testRemainingRolls_(){
|
75
|
73
|
// making sure that if remaining = !pointer keep rolling dice
|
|
74
|
+ game1.remainingRolls();
|
|
75
|
+ game1.setResult(game1.getRollResult());
|
76
|
76
|
|
|
77
|
+ int expected = game1.getRollResult();
|
|
78
|
+ int actual = game1.getPointer();
|
|
79
|
+ Assert.assertEquals(expected, actual);
|
77
|
80
|
|
78
|
81
|
}
|
79
|
82
|
|
|
@@ -90,7 +93,6 @@ public class CrapsTest {
|
90
|
93
|
|
91
|
94
|
@Test
|
92
|
95
|
public void testEnd(){ //**********************
|
93
|
|
- String responce = "no";
|
94
|
96
|
|
95
|
97
|
}
|
96
|
98
|
|
|
@@ -98,7 +100,6 @@ public class CrapsTest {
|
98
|
100
|
public void testAddPlayer(){
|
99
|
101
|
String expected = "Crappy";
|
100
|
102
|
String actual = Crappy.getName();
|
101
|
|
-
|
102
|
103
|
Assert.assertEquals(expected, actual);
|
103
|
104
|
}
|
104
|
105
|
|
|
@@ -106,13 +107,11 @@ public class CrapsTest {
|
106
|
107
|
public void testAddPlayer_(){
|
107
|
108
|
Player expected = Crappy;
|
108
|
109
|
Player actual = game1.getCrapsPlayer().getPlayer();
|
109
|
|
-
|
110
|
110
|
Assert.assertEquals(expected, actual);
|
111
|
111
|
}
|
112
|
112
|
|
113
|
113
|
@Test
|
114
|
114
|
public void testRemovePlayer(){ //***************
|
115
|
|
- game1.removePlayer(Crappy);
|
116
|
115
|
|
117
|
116
|
}
|
118
|
117
|
|