kenzo = new MutableSeatedPlayer(factory.createNewPlayer("Kenzo", 100), 100);
cedric = new MutableSeatedPlayer(factory.createNewPlayer("Cedric", 200),200);
guy = new MutableSeatedPlayer(factory.createNewPlayer("Guy", 200),200);
TableConfiguration configuration = new TableConfiguration();
table = new ServerTable(configuration);
table.addPlayer(kenzo);
table.addPlayer(cedric);
table.addPlayer(guy);
} catch (IllegalValueException e) {