return bot;
}
/** Test if a project exists by checking the Package Explorer View */
public static void assertProjectExists(SWTWorkbenchBot bot, String projectName) {
SWTBotView packageExplorer = bot.viewByTitle("Package Explorer");
SWTBotTree projectsTree = packageExplorer.bot().tree();
projectsTree.expandNode(projectName);
}
/**************************************************************************
* TESTS *