ct.setInput(input);
ct.setOutput(output);
PropertiesBasedServiceImpl service = new PropertiesBasedServiceImpl();
service.init();
service.execute(ct);
Assert.assertNotNull(ct.getOutput());
Assert.assertNotNull(ct.getOutput().getValue("echo_output"));
Assert.assertEquals("hello", ((StringParameterType) ((ActualParameter) ct.getOutput().getValue("echo_output")).getType()).getValue());