Search in sources :

Example 21 with JUnitCore

use of org.junit.runner.JUnitCore in project junit4 by junit-team.

the class JUnit38ClassRunnerTest method testListener.

@Test
public void testListener() throws Exception {
    JUnitCore runner = new JUnitCore();
    RunListener listener = new RunListener() {

        @Override
        public void testStarted(Description description) {
            assertEquals(Description.createTestDescription(OneTest.class, "testOne"), description);
            count++;
        }
    };
    runner.addListener(listener);
    count = 0;
    Result result = runner.run(OneTest.class);
    assertEquals(1, count);
    assertEquals(1, result.getRunCount());
}
Also used : Description(org.junit.runner.Description) JUnitCore(org.junit.runner.JUnitCore) RunListener(org.junit.runner.notification.RunListener) Result(org.junit.runner.Result) Test(org.junit.Test)

Example 22 with JUnitCore

use of org.junit.runner.JUnitCore in project junit4 by junit-team.

the class SingleMethodTest method parameterizedFilterToSingleMethod.

@Test
public void parameterizedFilterToSingleMethod() throws Exception {
    count = 0;
    Runner runner = Request.method(ParameterizedOneTimeSetup.class, "one[0]").getRunner();
    Result result = new JUnitCore().run(runner);
    assertEquals(1, result.getRunCount());
}
Also used : Runner(org.junit.runner.Runner) JUnitCore(org.junit.runner.JUnitCore) Result(org.junit.runner.Result) Test(org.junit.Test)

Example 23 with JUnitCore

use of org.junit.runner.JUnitCore in project junit4 by junit-team.

the class SingleMethodTest method oneTimeSetup.

@Test
public void oneTimeSetup() throws Exception {
    count = 0;
    Runner runner = Request.method(OneTimeSetup.class, "one").getRunner();
    Result result = new JUnitCore().run(runner);
    assertEquals(1, count);
    assertEquals(1, result.getRunCount());
}
Also used : Runner(org.junit.runner.Runner) JUnitCore(org.junit.runner.JUnitCore) Result(org.junit.runner.Result) Test(org.junit.Test)

Example 24 with JUnitCore

use of org.junit.runner.JUnitCore in project junit4 by junit-team.

the class ClassLevelMethodsWithIgnoredTestsTest method beforeClassShouldNotRunWhenAllTestsAreFiltered.

@Test
public void beforeClassShouldNotRunWhenAllTestsAreFiltered() {
    Result result = new JUnitCore().run(Request.classes(BeforeClassWithFilteredTest.class, HasUnfilteredTest.class).filterWith(CategoryFilter.exclude(FilteredTests.class)));
    analyseResult(result, "BeforeClass should not have been executed because the test method is filtered!");
}
Also used : JUnitCore(org.junit.runner.JUnitCore) Result(org.junit.runner.Result) Test(org.junit.Test)

Example 25 with JUnitCore

use of org.junit.runner.JUnitCore in project junit4 by junit-team.

the class AnnotationTest method testOldTest.

public void testOldTest() throws Exception {
    JUnitCore runner = new JUnitCore();
    runner.run(OldTest.class);
    assertTrue(run);
}
Also used : JUnitCore(org.junit.runner.JUnitCore)

Aggregations

JUnitCore (org.junit.runner.JUnitCore)169 Result (org.junit.runner.Result)100 Test (org.junit.Test)88 Request (org.junit.runner.Request)32 PrintableResult.testResult (org.junit.experimental.results.PrintableResult.testResult)22 Failure (org.junit.runner.notification.Failure)21 Description (org.junit.runner.Description)16 RunListener (org.junit.runner.notification.RunListener)16 TestResult (junit.framework.TestResult)14 ArrayList (java.util.ArrayList)13 TextListener (org.junit.internal.TextListener)12 Runner (org.junit.runner.Runner)9 RandomizedRunner (com.carrotsearch.randomizedtesting.RandomizedRunner)7 TestSuiteModel (com.google.testing.junit.runner.model.TestSuiteModel)6 ByteArrayOutputStream (java.io.ByteArrayOutputStream)6 OutputStream (java.io.OutputStream)5 CategoryFilter (org.junit.experimental.categories.Categories.CategoryFilter)5 File (java.io.File)4 AtomicBoolean (java.util.concurrent.atomic.AtomicBoolean)4 InOrder (org.mockito.InOrder)4