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