/*
* Test that the dealer gets to act first on the first round in a heads up
* game
*/
public void testTwoPlayersDealerSwitch() {
MutableSeatedPlayer craig = null;
try {
guy = new MutableSeatedPlayer(factory.createNewPlayer("Guy", 100),100);
craig = new MutableSeatedPlayer(factory.createNewPlayer("Craig", 100),100);
TableConfiguration configuration = new TableConfiguration();
table = new ServerTable(configuration);
table.addPlayer(guy);
table.addPlayer(craig);
} catch (IllegalValueException e) {