blob: c1172b2da052032082432322c7ccc5bf099ea723 [file] [log] [blame]
/**
*/
package org.eclipse.osbp.ecview.core.extension.model.extension.tests;
import junit.textui.TestRunner;
import org.eclipse.osbp.ecview.core.extension.model.extension.ExtensionModelFactory;
import org.eclipse.osbp.ecview.core.extension.model.extension.YNumericField;
/**
* <!-- begin-user-doc -->
* A test case for the model object '<em><b>YNumeric Field</b></em>'.
* <!-- end-user-doc -->
* <p>
* The following operations are tested:
* <ul>
* <li>{@link org.eclipse.osbp.ecview.core.common.model.core.YValueBindable#createValueEndpoint() <em>Create Value Endpoint</em>}</li>
* </ul>
* </p>
* @generated
*/
public class YNumericFieldTest extends YInputTest {
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public static void main(String[] args) {
TestRunner.run(YNumericFieldTest.class);
}
/**
* Constructs a new YNumeric Field test case with the given name.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public YNumericFieldTest(String name) {
super(name);
}
/**
* Returns the fixture for this YNumeric Field test case.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
protected YNumericField getFixture() {
return (YNumericField)fixture;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see junit.framework.TestCase#setUp()
* @generated
*/
@Override
protected void setUp() throws Exception {
setFixture(ExtensionModelFactory.eINSTANCE.createYNumericField());
}
/**
* <!-- 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.osbp.ecview.core.common.model.core.YValueBindable#createValueEndpoint() <em>Create Value Endpoint</em>}' operation.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see org.eclipse.osbp.ecview.core.common.model.core.YValueBindable#createValueEndpoint()
* @generated
*/
public void testCreateValueEndpoint() {
// TODO: implement this operation test method
// Ensure that you remove @generated or mark it @generated NOT
fail();
}
} //YNumericFieldTest