configurer.configure(SOLVER_CONFIG);
Solver solver = configurer.buildSolver();
SolutionDao solutionDao = new XstreamSolutionDaoImpl();
Solution startingSolution = solutionDao.readSolution(getClass().getResourceAsStream(UNSOLVED_DATA));
solver.setStartingSolution(startingSolution);
solver.solve();
Solution bestSolution = solver.getBestSolution();
assertNotNull(bestSolution);
Score bestScore = solver.getBestScore();
assertEquals(DefaultSimpleScore.valueOf(0), bestScore);
}