Examples of JUnit38ClassRunner


Examples of org.junit.internal.runners.JUnit38ClassRunner

      Assert.fail();
    }
  }
 
  @Test public void canUnadaptAnAdapter() {
    JUnit38ClassRunner runner= new JUnit38ClassRunner(new JUnit4TestAdapter(AnnotatedTest.class));
    Result result= new JUnitCore().run(runner);
    Failure failure= result.getFailures().get(0);
    assertEquals(Description.createTestDescription(AnnotatedTest.class, "foo"), failure.getDescription());
  }
View Full Code Here

Examples of org.junit.internal.runners.JUnit38ClassRunner

  private JUnit38ClassRunner makeSuiteRunner( Class<?> javaClass, String suiteMethod, final TestPlatform testPlatform ) throws Throwable
    {
    Method method = javaClass.getMethod( suiteMethod, TestPlatform.class );

    return new JUnit38ClassRunner( (Test) method.invoke( null, testPlatform ) );
    }
View Full Code Here

Examples of org.junit.internal.runners.JUnit38ClassRunner

   * Run all the tests contained in JUnit 3.8.x <code>test</code>. Here for backward compatibility.
   * @param test the old-style test
   * @return a {@link Result} describing the details of the test run and the failed tests.
   */
  public Result run(junit.framework.Test test) {
    return run(new JUnit38ClassRunner(test));
  }
View Full Code Here

Examples of org.junit.internal.runners.JUnit38ClassRunner

        if (each.toString().startsWith(MALFORMED_JUNIT_3_TEST_CLASS_PREFIX)) {
            // This is cheating, because it runs the whole class
            // to get the warning for this method, but we can't do better,
            // because JUnit 3.8's
            // thrown away which method the warning is for.
            return new JUnit38ClassRunner(new TestSuite(getMalformedTestClass(each)));
        }
        Class<?> type = each.getTestClass();
        if (type == null) {
            throw new RuntimeException("Can't build a runner from description [" + each + "]");
        }
View Full Code Here

Examples of org.junit.internal.runners.JUnit38ClassRunner

     *
     * @param test the old-style test
     * @return a {@link Result} describing the details of the test run and the failed tests.
     */
    public Result run(junit.framework.Test test) {
        return run(new JUnit38ClassRunner(test));
    }
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.