Program now handles

- Pair
- Two pairs
- Three of a kind
- Four of a kind
This commit is contained in:
2015-04-27 13:46:27 +02:00
parent c5680e28a1
commit 8a41e1d1f4
2 changed files with 114 additions and 24 deletions

View File

@@ -13,30 +13,56 @@ public class PokerGameTest {
// FIXME compare_two_hands
// FIXME find_highest_score
// Spader
// Spader
// Hjärter
// Ruter
// Klöver
// K
PokerGame myGame = new PokerGame();
@Test
public void find_all_values() throws Exception {
public void nothing_gives_0() throws Exception {
String hand = "S2K3R5H6S7";
int result = myGame.getScore(hand);
assertEquals(0, result);
}
@Test
public void find_all_values_and_colors_gives_1() throws Exception {
String hand = "S2K3R5H6S7";
public void single_pair_gives_2() throws Exception {
String hand = "S2K2R5H6S7";
int result = myGame.getScore(hand);
assertEquals(1, result);
assertEquals(2, result);
}
@Test
public void three_of_a_kind_gives_3() throws Exception {
String hand = "S2K2R2H6S7";
int result = myGame.getScore(hand);
assertEquals(3, result);
}
@Test
public void two_pairs_gives_6() throws Exception {
String hand = "S2K2R5H7S7";
int result = myGame.getScore(hand);
assertEquals(6, result);
}
@Test
public void four_of_a_kind_gives_7() throws Exception {
String hand = "S2K2R2H2S7";
int result = myGame.getScore(hand);
assertEquals(7, result);
}
}