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