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