junit.framework.JUnit4TestAdapter Java Examples

The following examples show how to use junit.framework.JUnit4TestAdapter. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: RunJUnit4TestsFromJava.java    From tutorials with MIT License 5 votes vote down vote up
public static void runRepeated() {
    Test test = new JUnit4TestAdapter(SecondUnitTest.class);
    RepeatedTest repeatedTest = new RepeatedTest(test, 5);

    JUnitCore junit = new JUnitCore();
    junit.addListener(new TextListener(System.out));

    junit.run(repeatedTest);
}
 
Example #2
Source File: RunJUnit4TestsFromJava.java    From tutorials with MIT License 5 votes vote down vote up
public static void runRepeatedSuite() {
    TestSuite mySuite = new ActiveTestSuite();

    JUnitCore junit = new JUnitCore();
    junit.addListener(new TextListener(System.out));

    mySuite.addTest(new RepeatedTest(new JUnit4TestAdapter(FirstUnitTest.class), 5));
    mySuite.addTest(new RepeatedTest(new JUnit4TestAdapter(SecondUnitTest.class), 3));

    junit.run(mySuite);
}
 
Example #3
Source File: GraphSerializationTest.java    From dkpro-jwpl with Apache License 2.0 4 votes vote down vote up
public static junit.framework.Test suite(){
    return new JUnit4TestAdapter(GraphSerializationTest.class);
}
 
Example #4
Source File: SWTBotStressTests.java    From tracecompass with Eclipse Public License 2.0 4 votes vote down vote up
/**
 * @return Test suite definition
 */
public static TestSuite suite() {
    TestSuite s = new TestSuite(String.format("Stress Test [%d runs]", NB_RUNS));
    s.addTest(new RepeatedTest(new JUnit4TestAdapter(RunAllSWTBotTests.class), NB_RUNS));
    return s;
}
 
Example #5
Source File: AllUITests.java    From webcurator with Apache License 2.0 4 votes vote down vote up
public static junit.framework.Test suite() {
	return new JUnit4TestAdapter(AllUITests.class);
}
 
Example #6
Source File: AllTests.java    From webcurator with Apache License 2.0 4 votes vote down vote up
public static junit.framework.Test suite() {
	return new JUnit4TestAdapter(AllTests.class);
}
 
Example #7
Source File: AllNonUITests.java    From webcurator with Apache License 2.0 4 votes vote down vote up
public static junit.framework.Test suite() {
	return new JUnit4TestAdapter(AllNonUITests.class);
}
 
Example #8
Source File: AllUITests.java    From webcurator with Apache License 2.0 4 votes vote down vote up
public static junit.framework.Test suite() {
	return new JUnit4TestAdapter(AllUITests.class);
}
 
Example #9
Source File: AllTests.java    From webcurator with Apache License 2.0 4 votes vote down vote up
public static junit.framework.Test suite() {
	return new JUnit4TestAdapter(AllTests.class);
}
 
Example #10
Source File: AllNonUITests.java    From webcurator with Apache License 2.0 4 votes vote down vote up
public static junit.framework.Test suite() {
	return new JUnit4TestAdapter(AllNonUITests.class);
}
 
Example #11
Source File: AllUITests.java    From webcurator with Apache License 2.0 4 votes vote down vote up
public static junit.framework.Test suite() {
	return new JUnit4TestAdapter(AllUITests.class);
}
 
Example #12
Source File: AllTests.java    From webcurator with Apache License 2.0 4 votes vote down vote up
public static junit.framework.Test suite() {
	return new JUnit4TestAdapter(AllTests.class);
}
 
Example #13
Source File: AllNonUITests.java    From webcurator with Apache License 2.0 4 votes vote down vote up
public static junit.framework.Test suite() {
	return new JUnit4TestAdapter(AllNonUITests.class);
}
 
Example #14
Source File: AllTests.java    From webcurator with Apache License 2.0 4 votes vote down vote up
public static junit.framework.Test suite() {
	return new JUnit4TestAdapter(AllTests.class);
}
 
Example #15
Source File: TestEmpty.java    From gsn with GNU General Public License v3.0 4 votes vote down vote up
public static junit.framework.Test suite() {
   return new JUnit4TestAdapter(TestEmpty.class);
}