/** */ package simplepdl.tests; import junit.framework.TestCase; import simplepdl.ProcessElement; /** * * A test case for the model object 'Process Element'. * * @generated */ public abstract class ProcessElementTest extends TestCase { /** * The fixture for this Process Element test case. * * * @generated */ protected ProcessElement fixture = null; /** * Constructs a new Process Element test case with the given name. * * * @generated */ public ProcessElementTest(String name) { super(name); } /** * Sets the fixture for this Process Element test case. * * * @generated */ protected void setFixture(ProcessElement fixture) { this.fixture = fixture; } /** * Returns the fixture for this Process Element test case. * * * @generated */ protected ProcessElement getFixture() { return fixture; } } //ProcessElementTest