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