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