blob: 541563dadecfc3d0503ba404b100d526e0f68e44 [file] [log] [blame]
package org.eclipse.stem.internal.data.generatedplugin.tests;
/*******************************************************************************
* Copyright (c) 2009 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
import junit.framework.TestCase;
import junit.textui.TestRunner;
import org.eclipse.stem.internal.data.generatedplugin.Extension;
import org.eclipse.stem.internal.data.generatedplugin.GeneratedpluginFactory;
/**
* <!-- begin-user-doc --> A test case for the model object '
* <em><b>Extension</b></em>'. <!-- end-user-doc -->
*
* @generated
*/
@SuppressWarnings("all")
public class ExtensionTest extends TestCase {
/**
* The fixture for this Extension test case. <!-- begin-user-doc --> <!--
* end-user-doc -->
*
* @generated
*/
protected Extension fixture = null;
/**
* <!-- begin-user-doc --> <!-- end-user-doc -->
*
* @generated
*/
public static void main(String[] args) {
TestRunner.run(ExtensionTest.class);
}
/**
* Constructs a new Extension test case with the given name. <!--
* begin-user-doc --> <!-- end-user-doc -->
*
* @generated
*/
public ExtensionTest(String name) {
super(name);
}
/**
* Sets the fixture for this Extension test case. <!-- begin-user-doc -->
* <!-- end-user-doc -->
*
* @generated
*/
protected void setFixture(Extension fixture) {
this.fixture = fixture;
}
/**
* Returns the fixture for this Extension test case. <!-- begin-user-doc -->
* <!-- end-user-doc -->
*
* @generated
*/
protected Extension getFixture() {
return fixture;
}
/**
* <!-- begin-user-doc --> <!-- end-user-doc -->
*
* @see junit.framework.TestCase#setUp()
* @generated
*/
@Override
protected void setUp() throws Exception {
setFixture(GeneratedpluginFactory.eINSTANCE.createExtension());
}
/**
* <!-- begin-user-doc --> <!-- end-user-doc -->
*
* @see junit.framework.TestCase#tearDown()
* @generated
*/
@Override
protected void tearDown() throws Exception {
setFixture(null);
}
/**
* Keeps JUnit quiet about the lack of tests in this class.
*/
public void testFoo() {
assertTrue(true);
}
} // ExtensionTest