Files
SoftwareCraftmanship/PokerKata/test/session3/PokerGameTest.java
di7chro f733d8f7cc Added header
Program now handles
- Pair
- Two-pair
- Three of a kind
- Four of a kind
2015-04-27 14:00:16 +02:00

64 lines
1.1 KiB
Java

/*
* PokerGame.java
*
* Course in Software Craftsmenship @ Högskolan Väst
* Poker game kata for testing TDD, Test Driven Development
*
* 2015-04-27
*/
package session3;
import static org.junit.Assert.assertEquals;
import org.junit.Test;
public class PokerGameTest {
PokerGame myGame = new PokerGame();
@Test
public void nothing_gives_0() throws Exception {
String hand = "S2K3R5H6S7";
int result = myGame.getScore(hand);
assertEquals(0, result);
}
@Test
public void single_pair_gives_2() throws Exception {
String hand = "S2K2R5H6S7";
int result = myGame.getScore(hand);
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);
}
}