// execute the task
task.generate();
// validate the eventual model
RebelMainModel model = task.getRebelModel();
assertNotNull(model);
List<RebelWebResource> webResources = model.getWebResources();
// TODO very rough test that doesn't actually validate almost anything... just make sure the code runs through
// TODO make it test the real requirements more thoroughly
assertTrue(webResources.size() > 0);
log.info("testWeb() XML : \n" + model.toXmlString());
cleanUp(project);
}