-
Bug
-
Resolution: Unresolved
-
Major
-
None
-
1.0.2.Final
-
- download attached maven project
- execute AppTest
-
Workaround Exists
-
The following test doesn't pass:
@RunWith(Arquillian.class) public class AppTest { private boolean before = false; @Before public void before() { this.before = true; } @Test public void testBefore() { Assert.assertTrue(before); } }
The same test without @RunWith annotation passes.