/** */ package com.thalesgroup.openflexo.emf.model.city2.tests; import junit.framework.TestCase; import com.thalesgroup.openflexo.emf.model.city2.House; /** * <!-- begin-user-doc --> A test case for the model object '<em><b>House</b></em>'. <!-- end-user-doc --> * * @generated */ public abstract class HouseTest extends TestCase { /** * The fixture for this House test case. <!-- begin-user-doc --> <!-- end-user-doc --> * * @generated */ protected House fixture = null; /** * Constructs a new House test case with the given name. <!-- begin-user-doc --> <!-- end-user-doc --> * * @generated */ public HouseTest(String name) { super(name); } /** * Sets the fixture for this House test case. <!-- begin-user-doc --> <!-- end-user-doc --> * * @generated */ protected void setFixture(House fixture) { this.fixture = fixture; } /** * Returns the fixture for this House test case. <!-- begin-user-doc --> <!-- end-user-doc --> * * @generated */ protected House getFixture() { return fixture; } } // HouseTest