public void getsMultipleSingleSelection() throws Exception {
bot.radio("SWT.MULTI").click();
table = bot.tableInGroup("Table");
table.select(new int[] { 5, 10 });
TableCollection selection = table.selection();
assertEquals("Index:5", selection.get(0, 0));
assertEquals("images", selection.get(0, 1));
assertEquals("91571", selection.get(0, 2));
assertEquals("yesterday", selection.get(0, 3));
assertEquals(new TableRow(new String[] { "Index:10", "databases", "2556", "tomorrow" }), selection.get(1));
}