use of org.eclipse.swtbot.swt.finder.widgets.SWTBotSpinner in project linuxtools by eclipse.
the class StatComparisonViewTest method setPerfOptions.
@Override
protected void setPerfOptions(SWTWorkbenchBot bot) {
SWTBotCheckBox chkBox = bot.checkBox("Show Stat View");
assertNotNull(chkBox);
chkBox.select();
SWTBotSpinner spinner = bot.spinner();
assertNotNull(spinner);
spinner.setSelection(3);
}
use of org.eclipse.swtbot.swt.finder.widgets.SWTBotSpinner in project linuxtools by eclipse.
the class StatViewTest method setPerfOptions.
@Override
protected void setPerfOptions(SWTWorkbenchBot bot) {
SWTBotCheckBox chkBox = bot.checkBox("Show Stat View");
assertNotNull(chkBox);
chkBox.select();
SWTBotSpinner spinner = bot.spinner();
assertNotNull(spinner);
spinner.setSelection(STAT_RUNS);
}
Aggregations