* @throws Exception
*/
@Test
public void testMethodPropertyParameterNull() throws Exception
{
ExplicitMethodEntryPointResolver resolver = new ExplicitMethodEntryPointResolver();
resolver.addMethod("someOtherBusinessMethod");
InvocationResult result = resolver.invoke(new MultiplePayloadsTestObject(),
getTestEventContext(new Object[]{null, "blah"}));
assertEquals(result.getState(), InvocationResult.State.SUCCESSFUL);
}