Package org.junit.internal.runners

Examples of org.junit.internal.runners.OldTestClassRunner.testCount()


    }
  }
 
  @Test public void plansDecoratorCorrectly() {
    OldTestClassRunner runner= new OldTestClassRunner(new TestDecorator(new TestSuite(MyTest.class)));
    assertEquals(1, runner.testCount());
  }
 
  public static class AnnotatedTest {
    @Test public void foo() {
      Assert.fail();
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.