/** * <copyright> * </copyright> * * $Id$ */ package org.eclipse.amalgam.tutorials.emf.droid.tests; import junit.textui.TestRunner; import org.eclipse.amalgam.tutorials.emf.droid.DroidFactory; import org.eclipse.amalgam.tutorials.emf.droid.ScaleAnimation; /** * <!-- begin-user-doc --> * A test case for the model object '<em><b>Scale Animation</b></em>'. * <!-- end-user-doc --> * @generated */ public class ScaleAnimationTest extends TerminalAnimationElementsTest { /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public static void main(String[] args) { TestRunner.run(ScaleAnimationTest.class); } /** * Constructs a new Scale Animation test case with the given name. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public ScaleAnimationTest(String name) { super(name); } /** * Returns the fixture for this Scale Animation test case. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override protected ScaleAnimation getFixture() { return (ScaleAnimation)fixture; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see junit.framework.TestCase#setUp() * @generated */ @Override protected void setUp() throws Exception { setFixture(DroidFactory.eINSTANCE.createScaleAnimation()); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see junit.framework.TestCase#tearDown() * @generated */ @Override protected void tearDown() throws Exception { setFixture(null); } } //ScaleAnimationTest