assertEventFired(LocalExecutionEvent.class, 1);
}
private org.jboss.arquillian.test.spi.event.suite.Test test(String testMethodName, Object obj) throws Exception
{
TestMethodExecutor executor = mock(TestMethodExecutor.class);
when(executor.getInstance()).thenReturn(obj);
when(executor.getMethod()).thenReturn(method(testMethodName));
return new org.jboss.arquillian.test.spi.event.suite.Test(
executor
);
}