/** * (c) Urs Zeidler */ package de.urszeidler.eclipse.shr5.gameplay.tests; import de.urszeidler.eclipse.shr5.gameplay.SpellCommand; /** * <!-- begin-user-doc --> * A test case for the model object '<em><b>Spell Command</b></em>'. * <!-- end-user-doc --> * @generated */ public abstract class SpellCommandTest extends ProbeCommandTest { /** * Constructs a new Spell Command test case with the given name. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public SpellCommandTest(String name) { super(name); } /** * Returns the fixture for this Spell Command test case. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override protected SpellCommand getFixture() { return (SpellCommand)fixture; } } //SpellCommandTest