@Test
public void testPropertyParamsOnMethodAndResponse() throws Exception
{
testIBean.init("shhh".getBytes());
Response result = testIBean.doMethodPropertyParamAndResponse("secret", "hello", new ReversePropertyParamFactory("customProperty"));
assertNotNull(result);
assertEquals("Value is: secret", result.getPayload());
assertEquals("shhh", result.getHeader("header1"));
assertEquals("shhh secret", result.getHeader("header2"));
assertEquals("olleh", result.getHeader("propHeader"));
}