Jesse Glick oracle.com> writes: > Cannot add a test for it easily without relying on JDK 5 to build. Manual test case (retyped by hand so please excuse any typos): public class T1 extends junit.framework.TestCase" { public void testOK() {} public void testBad() {throw new RuntimeException("failed");} } public class T2 { @org.junit.Test public void ok() {} @org.junit.Test public void bad() { throw new RuntimeException("failed");} } Expected: both test suites pass with one method each. Actual 1.8.2 proposed build: T1 passes with one method; T2 fails in bad() which is supposed to be skipped. --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscribe@ant.apache.org For additional commands, e-mail: dev-help@ant.apache.org