blob: 20fb10c0ff782dccfa43e5c31ac9e601bbb601a1 [file] [log] [blame]
/**
*/
package org.eclipse.osbp.ecview.core.common.model.binding.tests;
import junit.textui.TestRunner;
import org.eclipse.osbp.ecview.core.common.model.binding.BindingFactory;
import org.eclipse.osbp.ecview.core.common.model.binding.YBeanValueBindingEndpoint;
/**
* <!-- begin-user-doc -->
* A test case for the model object '<em><b>YBean Value Binding Endpoint</b></em>'.
* <!-- end-user-doc -->
* @generated
*/
public class YBeanValueBindingEndpointTest extends YValueBindingEndpointTest {
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public static void main(String[] args) {
TestRunner.run(YBeanValueBindingEndpointTest.class);
}
/**
* Constructs a new YBean Value Binding Endpoint test case with the given name.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public YBeanValueBindingEndpointTest(String name) {
super(name);
}
/**
* Returns the fixture for this YBean Value Binding Endpoint test case.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
protected YBeanValueBindingEndpoint getFixture() {
return (YBeanValueBindingEndpoint)fixture;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see junit.framework.TestCase#setUp()
* @generated
*/
@Override
protected void setUp() throws Exception {
setFixture(BindingFactory.eINSTANCE.createYBeanValueBindingEndpoint());
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see junit.framework.TestCase#tearDown()
* @generated
*/
@Override
protected void tearDown() throws Exception {
setFixture(null);
}
} //YBeanValueBindingEndpointTest