Finds a Straight

This commit is contained in:
2015-04-28 09:47:02 +02:00
parent 610a48657b
commit 05ba0ebb03
2 changed files with 27 additions and 2 deletions

View File

@@ -78,4 +78,13 @@ public class PokerGameTest {
assertEquals(10, result);
}
}
@Test
public void straight_gives_12() throws Exception {
String hand = "K2S3H4R5R6";
int result = myGame.getScore(hand);
assertEquals(12, result);
}
}