// test config handler
String configResponse = getResponse(url+"/config");
assertTrue(configResponse.contains("shortCutButtonList"));
pendantUI.getMainWindow().getSettings().getPendantConfig().getStepSizeList().add(new StepSizeOption("newStepSizeOptionValue", "newStepSizeOptionLabel", false));
configResponse = getResponse(url+"/config");
assertTrue(configResponse.contains("newStepSizeOptionValue"));
pendantUI.stop();