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