}
@Test
public void throwsExceptionInCaseOfInvalidTextBasedSelection() throws Exception {
SWTBot bot = new SWTBot();
SWTBotList list = bot.listInGroup("List");
try {
list.select("non existent item");
fail("Was expecting an exception");
} catch (RuntimeException e) {
assertEquals("assertion failed: Item `non existent item' not found in list.", e.getMessage());