/** * 2014 Urs Zeidler */ package de.urszeidler.eclipse.shr5.tests; import junit.framework.TestCase; import junit.textui.TestRunner; import de.urszeidler.eclipse.shr5.Localization; import de.urszeidler.eclipse.shr5.Shr5Factory; /** * <!-- begin-user-doc --> * A test case for the model object '<em><b>Localization</b></em>'. * <!-- end-user-doc --> * @generated */ public class LocalizationTest extends TestCase { /** * The fixture for this Localization test case. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ protected Localization fixture = null; /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public static void main(String[] args) { TestRunner.run(LocalizationTest.class); } /** * Constructs a new Localization test case with the given name. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public LocalizationTest(String name) { super(name); } /** * Sets the fixture for this Localization test case. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ protected void setFixture(Localization fixture) { this.fixture = fixture; } /** * Returns the fixture for this Localization test case. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ protected Localization getFixture() { return fixture; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see junit.framework.TestCase#setUp() * @generated */ @Override protected void setUp() throws Exception { setFixture(Shr5Factory.eINSTANCE.createLocalization()); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see junit.framework.TestCase#tearDown() * @generated */ @Override protected void tearDown() throws Exception { setFixture(null); } } //LocalizationTest