package surefirebug; import org.junit.Test; public class JunitDepDependencyTest { @Test public void shouldBeExecutedWithTestDependencyJunitDep() { System.out.println("JUnit4 would execute this test-method"); } public void test_PojoTestMethod_WouldBeIgnoredByJUnit4() { throw new AssertionError( "This test-method would not have been executed by JUnit4"); } }