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