/** */ package com.thalesgroup.openflexo.emf.model.city2.tests; import junit.textui.TestRunner; import com.thalesgroup.openflexo.emf.model.city2.City2Factory; import com.thalesgroup.openflexo.emf.model.city2.Mansion; /** * <!-- begin-user-doc --> A test case for the model object '<em><b>Mansion</b></em>'. <!-- end-user-doc --> * * @generated */ public class MansionTest extends HouseTest { /** * <!-- begin-user-doc --> <!-- end-user-doc --> * * @generated */ public static void main(String[] args) { TestRunner.run(MansionTest.class); } /** * Constructs a new Mansion test case with the given name. <!-- begin-user-doc --> <!-- end-user-doc --> * * @generated */ public MansionTest(String name) { super(name); } /** * Returns the fixture for this Mansion test case. <!-- begin-user-doc --> <!-- end-user-doc --> * * @generated */ @Override protected Mansion getFixture() { return (Mansion) fixture; } /** * <!-- begin-user-doc --> <!-- end-user-doc --> * * @see junit.framework.TestCase#setUp() * @generated */ @Override protected void setUp() throws Exception { setFixture(City2Factory.eINSTANCE.createMansion()); } /** * <!-- begin-user-doc --> <!-- end-user-doc --> * * @see junit.framework.TestCase#tearDown() * @generated */ @Override protected void tearDown() throws Exception { setFixture(null); } } // MansionTest