League prizes test.

This commit is contained in:
marcins78@gmail.com
2012-04-06 14:48:36 +00:00
parent ec05e0b3e2
commit b1fe104b63

View File

@@ -14,4 +14,13 @@ public class LeaguePrizesTest {
System.out.println(stringIntegerEntry.getKey() + ": " + stringIntegerEntry.getValue());
}
}
@Test
public void testLeaguePrize() {
LeaguePrizes leaguePrizes = new LeaguePrizes();
CardCollection prize = leaguePrizes.getPrizeForLeague(1, 100, 2f, "fotr_block");
for (Map.Entry<String, Integer> stringIntegerEntry : prize.getAll().entrySet()) {
System.out.println(stringIntegerEntry.getKey() + ": " + stringIntegerEntry.getValue());
}
}
}