public void red_versus_blue_notsame_value_player1TakesDamage() {
check(BLUE, 5, RED, 10, 5, 0);
}
private void check(final PGCardColor c1Color, final int c1Value, final PGCardColor c2Color, final int c2Value, final int p1DamagesTaken, final int p2DamagesTaken) {
Player p1 = mock(Player.class);
Player p2 = mock(Player.class);
Card c1 = mock(Card.class);
when(c1.getColor()).thenReturn(c1Color);
when(c1.getValue()).thenReturn(c1Value);
Card c2 = mock(Card.class);