Open GoogleCodeExporter opened 9 years ago
Forgot to mention that I'm using java6.
Original comment by hannu.re...@op.fi
on 6 Jun 2012 at 8:11
Actually it looks like it is not possible to run tests at all with
SpringJUnit4ClassRunner (Spring 3.1.1.RELEASE) and use PowerMockRule. The
following test fails to run also:
@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration(locations = "classpath:test-config.xml")
public class SomeTest
{
@Rule
public PowerMockRule rule = new PowerMockRule();
@Test
public void testDummy()
{
assertTrue(true);
}
}
Original comment by hannu.re...@op.fi
on 8 Jun 2012 at 2:13
What error message do you get?
Original comment by johan.ha...@gmail.com
on 13 Jul 2012 at 7:12
Original issue reported on code.google.com by
hannu.re...@op.fi
on 6 Jun 2012 at 8:02