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