@Test
public void activatesTabItem() throws Exception {
bot.shell("SWT Controls").activate();
SWTBotTabItem tabItem = bot.tabItem("Sash");
Matcher<TabItem> withText = withText("Sash");
List<TabItem> findControls = new ControlFinder().findControls(allOf(widgetOfType(TabItem.class), withText));
assertSameWidget(findControls.get(0), tabItem.widget);
}