blob: 03628df6f4abc74e5652b39c972360800fa865b4 [file] [log] [blame]
package org.eclipse.stem.core.modifier.tests;
/*******************************************************************************
* Copyright (c) 2008 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.textui.TestRunner;
import org.eclipse.emf.ecore.EClassifier;
import org.eclipse.emf.ecore.EObject;
import org.eclipse.emf.ecore.EStructuralFeature;
import org.eclipse.emf.ecore.EcorePackage;
import org.eclipse.stem.core.modifier.LongNOPModifier;
import org.eclipse.stem.core.modifier.ModifierFactory;
/**
* <!-- begin-user-doc -->
* A test case for the model object '<em><b>Long NOP Modifier</b></em>'.
* <!-- end-user-doc -->
* @generated
*/
@SuppressWarnings("all")
public class LongNOPModifierTest extends NOPModifierTest {
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public static void main(String[] args) {
TestRunner.run(LongNOPModifierTest.class);
}
/**
* Constructs a new Long NOP Modifier test case with the given name.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public LongNOPModifierTest(String name) {
super(name);
}
/**
* Returns the fixture for this Long NOP Modifier test case.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
protected LongNOPModifier getFixture() {
return (LongNOPModifier)fixture;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see junit.framework.TestCase#setUp()
* @generated NOT
*/
@Override
protected void setUp() throws Exception {
super.setUp();
setFixture(createFixture());
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see junit.framework.TestCase#tearDown()
* @generated
*/
@Override
protected void tearDown() throws Exception {
setFixture(null);
}
/**
* @return a {@link LongNOPModifier} ready for testing.
*/
public LongNOPModifier createFixture() {
final LongNOPModifier retValue = ModifierFactory.eINSTANCE.createLongNOPModifier();
EObject testObject = getTestObject();
EStructuralFeature feature = testObject.eClass()
.getEStructuralFeatures().get(0);
retValue.setEStructuralFeature(feature);
return retValue;
} // createFixture
/**
* @see org.eclipse.stem.core.modifier.tests.FeatureModifierTest#getTestAttributeEType()
*/
@Override
protected EClassifier getTestAttributeEType() {
return EcorePackage.eINSTANCE.getELong();
}
} //LongNOPModifierTest