/** * <copyright> * </copyright> * * $Id$ */ package br.puc.molic.tests; import br.puc.molic.ClosingPoint; import br.puc.molic.MolicFactory; import junit.framework.TestCase; import junit.textui.TestRunner; /** * <!-- begin-user-doc --> * A test case for the model object '<em><b>Closing Point</b></em>'. * <!-- end-user-doc --> * @generated */ public class ClosingPointTest extends TestCase { /** * The fixture for this Closing Point test case. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ protected ClosingPoint fixture = null; /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public static void main(String[] args) { TestRunner.run(ClosingPointTest.class); } /** * Constructs a new Closing Point test case with the given name. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public ClosingPointTest(String name) { super(name); } /** * Sets the fixture for this Closing Point test case. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ protected void setFixture(ClosingPoint fixture) { this.fixture = fixture; } /** * Returns the fixture for this Closing Point test case. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ private ClosingPoint getFixture() { return fixture; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see junit.framework.TestCase#setUp() * @generated */ protected void setUp() throws Exception { setFixture(MolicFactory.eINSTANCE.createClosingPoint()); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see junit.framework.TestCase#tearDown() * @generated */ protected void tearDown() throws Exception { setFixture(null); } } //ClosingPointTest