Package com.junit

Source Code of com.junit.TestAll

package com.junit;
import junit.extensions.RepeatedTest;
import junit.framework.Test;
import junit.framework.TestCase;
import junit.framework.TestSuite;

public class TestAll extends TestCase{
  public static Test suite(){
    TestSuite suite = new TestSuite();
    suite.addTestSuite(CalculatorTest.class);
    suite.addTestSuite(LargestTest.class);
   
    suite.addTest(new RepeatedTest(new CalculatorTest("testAdd"),20));
    return suite;
  }
}
TOP

Related Classes of com.junit.TestAll

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.