/** */ package simplepdl.tests; import junit.textui.TestRunner; import simplepdl.Resource; import simplepdl.SimplepdlFactory; /** * * A test case for the model object 'Resource'. * * @generated */ public class ResourceTest extends ProcessElementTest { /** * * * @generated */ public static void main(String[] args) { TestRunner.run(ResourceTest.class); } /** * Constructs a new Resource test case with the given name. * * * @generated */ public ResourceTest(String name) { super(name); } /** * Returns the fixture for this Resource test case. * * * @generated */ @Override protected Resource getFixture() { return (Resource)fixture; } /** * * * @see junit.framework.TestCase#setUp() * @generated */ @Override protected void setUp() throws Exception { setFixture(SimplepdlFactory.eINSTANCE.createResource()); } /** * * * @see junit.framework.TestCase#tearDown() * @generated */ @Override protected void tearDown() throws Exception { setFixture(null); } } //ResourceTest