blob: 2b1e9304b9acdcbd0c5901249893c63425cd4c52 [file] [log] [blame]
/**
* <copyright>
* </copyright>
*
* $Id: CommonTests.java,v 1.1 2005/08/23 03:31:00 cbridgha Exp $
*/
package org.eclipse.jst.j2ee.common.tests;
import junit.framework.Test;
import junit.framework.TestSuite;
import junit.textui.TestRunner;
/**
* <!-- begin-user-doc -->
* A test suite for the '<em><b>common</b></em>' package.
* <!-- end-user-doc -->
* @generated
*/
public class CommonTests extends TestSuite {
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public static void main(String[] args) {
TestRunner.run(suite());
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public static Test suite() {
TestSuite suite = new CommonTests("common Tests");
return suite;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public CommonTests(String name) {
super(name);
}
} //CommonTests