@Autowired
private CommandDispatcher dispatcher;
@Test
public void testConvertApplication() throws Exception {
GetConfigurationRequest request = new GetConfigurationRequest();
request.setApplicationId(APP_ID);
GetConfigurationResponse response = (GetConfigurationResponse) dispatcher.execute(
GetConfigurationRequest.COMMAND, request, null, "en");
if (response.isError()) {
response.getErrors().get(0).printStackTrace();
}