47 lines
820 B
Java
47 lines
820 B
Java
/**
|
|
*/
|
|
package simplepdl.tests;
|
|
|
|
import junit.framework.Test;
|
|
import junit.framework.TestSuite;
|
|
|
|
import junit.textui.TestRunner;
|
|
|
|
/**
|
|
* <!-- begin-user-doc -->
|
|
* A test suite for the '<em><b>Simplepdl</b></em>' model.
|
|
* <!-- end-user-doc -->
|
|
* @generated
|
|
*/
|
|
public class SimplepdlAllTests 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 SimplepdlAllTests("Simplepdl Tests");
|
|
return suite;
|
|
}
|
|
|
|
/**
|
|
* <!-- begin-user-doc -->
|
|
* <!-- end-user-doc -->
|
|
* @generated
|
|
*/
|
|
public SimplepdlAllTests(String name) {
|
|
super(name);
|
|
}
|
|
|
|
} //SimplepdlAllTests
|