* @param singleRow String representation of one row
* @throws FactoryException If singleRow contains illegal chars.
* @return The game created while parsing the row.
*/
protected Game makePlay(String singleRow) throws FactoryException {
MapParser p = new MapParser(makeFactory());
Game theGame = p.parseMap(new String[]{singleRow});
return theGame;
}