blob: cbfd6ddc924a396be68ed8ad47b31b1ba99bf757 [file] [log] [blame]
/**
*/
package org.eclipse.papyrus.layers.stackmodel.layers.tests;
import junit.framework.TestCase;
import junit.textui.TestRunner;
import org.eclipse.papyrus.layers.stackmodel.layers.LayersFactory;
import org.eclipse.papyrus.layers.stackmodel.layers.PropertyOperator;
/**
* <!-- begin-user-doc -->
* A test case for the model object '<em><b>Property Operator</b></em>'.
* <!-- end-user-doc -->
* <p>
* The following operations are tested:
* <ul>
* <li>{@link org.eclipse.papyrus.layers.stackmodel.layers.PropertyOperator#getComputePropertyValueCommand(org.eclipse.emf.common.util.EList) <em>Get Compute Property Value Command</em>}</li>
* </ul>
* </p>
*
* @generated
*/
public class PropertyOperatorTest extends TestCase {
/**
* The fixture for this Property Operator test case.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
*
* @generated
*/
protected PropertyOperator fixture = null;
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
*
* @generated
*/
public static void main(String[] args) {
TestRunner.run(PropertyOperatorTest.class);
}
/**
* Constructs a new Property Operator test case with the given name.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
*
* @generated
*/
public PropertyOperatorTest(String name) {
super(name);
}
/**
* Sets the fixture for this Property Operator test case.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
*
* @generated
*/
protected void setFixture(PropertyOperator fixture) {
this.fixture = fixture;
}
/**
* Returns the fixture for this Property Operator test case.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
*
* @generated
*/
protected PropertyOperator getFixture() {
return fixture;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
*
* @see junit.framework.TestCase#setUp()
* @generated
*/
@Override
protected void setUp() throws Exception {
setFixture(LayersFactory.eINSTANCE.createPropertyOperator());
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
*
* @see junit.framework.TestCase#tearDown()
* @generated
*/
@Override
protected void tearDown() throws Exception {
setFixture(null);
}
/**
* Tests the '{@link org.eclipse.papyrus.layers.stackmodel.layers.PropertyOperator#getComputePropertyValueCommand(org.eclipse.emf.common.util.EList) <em>Get Compute Property Value Command</em>}' operation.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
*
* @see org.eclipse.papyrus.layers.stackmodel.layers.PropertyOperator#getComputePropertyValueCommand(org.eclipse.emf.common.util.EList)
* @generated
*/
public void testGetComputePropertyValueCommand__EList() {
// TODO: implement this operation test method
// Ensure that you remove @generated or mark it @generated NOT
fail();
}
} // PropertyOperatorTest