}
@Override
public void propertyTest(String msg) {
try {
ReferenceInvocation invoke = invokerA.newInvocation("inOut")
.setProperty(ReferenceInvokerTest.TEST_IN_PROPERTY, ReferenceInvokerTest.TEST_IN_PROPERTY)
.invoke();
// check that the out property can be read from the context
Object outProp = invoke.getProperty(ReferenceInvokerTest.TEST_OUT_PROPERTY);
Assert.assertNotNull(outProp);
Assert.assertEquals(ReferenceInvokerTest.TEST_OUT_PROPERTY, outProp);
} catch (Exception ex) {
ex.printStackTrace();
Assert.fail();