blob: ede20859a2affa34e4363a1490123d7a237eb0fa [file] [log] [blame]
/**
*/
package org.eclipse.osbp.ecview.core.extension.model.extension.tests;
import junit.framework.TestCase;
import junit.textui.TestRunner;
import org.eclipse.osbp.ecview.core.extension.model.extension.ExtensionModelFactory;
import org.eclipse.osbp.ecview.core.extension.model.extension.YLabel;
/**
* <!-- begin-user-doc -->
* A test case for the model object '<em><b>YLabel</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 YLabelTest extends TestCase {
/**
* The fixture for this YLabel test case.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
protected YLabel fixture = null;
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public static void main(String[] args) {
TestRunner.run(YLabelTest.class);
}
/**
* Constructs a new YLabel test case with the given name.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public YLabelTest(String name) {
super(name);
}
/**
* Sets the fixture for this YLabel test case.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
protected void setFixture(YLabel fixture) {
this.fixture = fixture;
}
/**
* Returns the fixture for this YLabel test case.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
protected YLabel getFixture() {
return fixture;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see junit.framework.TestCase#setUp()
* @generated
*/
@Override
protected void setUp() throws Exception {
setFixture(ExtensionModelFactory.eINSTANCE.createYLabel());
}
/**
* <!-- 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();
}
} //YLabelTest