/*
* Author: Chris Seguin
*
* This software has been developed under the copyleft
* rules of the GNU General Public License. Please
* consult the GNU General Public License for more
* details about use and distribution of this software.
*/
package org.acm.seguin.refactor;
import junit.framework.*;
/**
* Description of the Class
*
*@author Chris Seguin
*/
public class TestPackage {
/**
* A suite of unit tests for JUnit
*
*@return The test suite
*/
public static TestSuite suite() {
TestSuite suite = new TestSuite();
suite.addTest(org.acm.seguin.refactor.type.TestPackage.suite());
suite.addTest(org.acm.seguin.refactor.field.TestPackage.suite());
suite.addTest(org.acm.seguin.refactor.method.TestPackage.suite());
suite.addTest(org.acm.seguin.refactor.undo.TestPackage.suite());
return suite;
}
}
|