{
@Test @Ignore("ARQ-582")
public void shouldNotCallAnyMethodsWithoutLifecycleHandlers() throws Exception
{
TestRunnerAdaptor adaptor = mock(TestRunnerAdaptor.class);
when(adaptor.test(isA(TestMethodExecutor.class))).thenReturn(new TestResult(Status.PASSED));
TestListenerAdapter result = run(adaptor, ArquillianClass1.class);
Assert.assertTrue(wasSuccessful(result));
assertCycle(0, Cycle.values());