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