142 lines
2.9 KiB
Java
142 lines
2.9 KiB
Java
package session3;
|
|
|
|
import static org.junit.Assert.*;
|
|
|
|
import org.junit.Ignore;
|
|
import org.junit.Test;
|
|
|
|
public class PokerGameTest {
|
|
<<<<<<< HEAD
|
|
PokerGame myGame = new PokerGame();
|
|
|
|
@Test
|
|
public void nothing_gives_0() throws Exception {
|
|
String hand = "S2H3C4D5S7";
|
|
|
|
int result = myGame.getScore(hand);
|
|
|
|
assertEquals(0, result);
|
|
}
|
|
|
|
@Test
|
|
public void pair_gives_1() throws Exception {
|
|
String hand = "S3H3C4D5S8";
|
|
|
|
int result = myGame.getScore(hand);
|
|
|
|
assertEquals(1, result);
|
|
}
|
|
|
|
@Test
|
|
public void two_pairs_gives_2() throws Exception {
|
|
String hand = "S3H3C9D5S5";
|
|
|
|
int result = myGame.getScore(hand);
|
|
|
|
assertEquals(2, result);
|
|
}
|
|
|
|
@Test
|
|
public void three_of_a_kind_gives_3() throws Exception {
|
|
String hand = "S8H8C8D3S4";
|
|
=======
|
|
|
|
@Test
|
|
public void green_wins_with_highest_card() {
|
|
Player green = new Player("Green", "2S 3C 4D 7H AH");
|
|
Player white = new Player("White", "3S 4C 5D 6H KH");
|
|
PokerGame game = new PokerGame();
|
|
>>>>>>> origin/master
|
|
|
|
Player winningPlayer = game.calculateWinningPlayer(green, white);
|
|
|
|
<<<<<<< HEAD
|
|
assertEquals(3, result);
|
|
}
|
|
|
|
@Test
|
|
@Ignore
|
|
public void straight_gives_4() throws Exception {
|
|
String hand = "K2S3H4R5R6";
|
|
|
|
int result = myGame.getScore(hand);
|
|
|
|
assertEquals(4, result);
|
|
=======
|
|
assertEquals("Green", winningPlayer.getPlayerName());
|
|
}
|
|
|
|
@Test
|
|
public void one_pair_beats_highest_card() throws Exception {
|
|
Player green = new Player("Green", "2S 3C 4D 7H AH");
|
|
Player white = new Player("White", "3S 3C 5D 6H KH");
|
|
PokerGame game = new PokerGame();
|
|
|
|
Player winningPlayer = game.calculateWinningPlayer(green, white);
|
|
|
|
assertEquals("White", winningPlayer.getPlayerName());
|
|
>>>>>>> origin/master
|
|
}
|
|
|
|
@Test
|
|
<<<<<<< HEAD
|
|
@Ignore
|
|
public void flush_gives_5() throws Exception {
|
|
String hand = "S2S6S7S8S9";
|
|
|
|
int result = myGame.getScore(hand);
|
|
|
|
assertEquals(5, result);
|
|
}
|
|
|
|
@Test
|
|
@Ignore
|
|
public void full_house_gives_6() throws Exception {
|
|
String hand = "S2K2R2H7S7";
|
|
|
|
int result = myGame.getScore(hand);
|
|
|
|
assertEquals(6, result);
|
|
}
|
|
|
|
@Test
|
|
@Ignore
|
|
public void four_of_a_kind_gives_7() throws Exception {
|
|
String hand = "S2K2R2H2S7";
|
|
|
|
int result = myGame.getScore(hand);
|
|
|
|
assertEquals(7, result);
|
|
}
|
|
|
|
@Test
|
|
@Ignore
|
|
public void straight_flush_gives_8() throws Exception {
|
|
String hand = "K2K3K4K5K6";
|
|
|
|
int result = myGame.getScore(hand);
|
|
|
|
assertEquals(8, result);
|
|
}
|
|
|
|
@Test
|
|
@Ignore
|
|
public void royal_straight_flush_gives_9() throws Exception {
|
|
String hand = "R10RKRDRKRE";
|
|
|
|
int result = myGame.getScore(hand);
|
|
|
|
assertEquals(9, result);
|
|
=======
|
|
public void two_pair_beats_one_pair() throws Exception {
|
|
Player green = new Player("Green", "6S 6C 4D 7H AH");
|
|
Player white = new Player("White", "3S 3C 5D 5H KH");
|
|
PokerGame game = new PokerGame();
|
|
|
|
Player winningPlayer = game.calculateWinningPlayer(green, white);
|
|
|
|
assertEquals("White", winningPlayer.getPlayerName());
|
|
>>>>>>> origin/master
|
|
}
|
|
}
|