@Test
public void testInvokeMethodWithFailedClassCheck() throws Exception
{
try
{
ClassWithNoArgMethod instance = new ClassWithNoArgMethod();
Object invokeVoidMethod = ReflectHelper.invokeMethod(instance, "method", Integer.class);
Assert.assertEquals(invokeVoidMethod, "hello");
}
catch (ApplicationRuntimeException e)
{