/** */ package com.github.lbroudoux.dsl.eip.tests; import com.github.lbroudoux.dsl.eip.EipFactory; import com.github.lbroudoux.dsl.eip.ServiceRef; import junit.framework.TestCase; import junit.textui.TestRunner; /** * <!-- begin-user-doc --> * A test case for the model object '<em><b>Service Ref</b></em>'. * <!-- end-user-doc --> * @generated */ public class ServiceRefTest extends TestCase { /** * The fixture for this Service Ref test case. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ protected ServiceRef fixture = null; /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public static void main(String[] args) { TestRunner.run(ServiceRefTest.class); } /** * Constructs a new Service Ref test case with the given name. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public ServiceRefTest(String name) { super(name); } /** * Sets the fixture for this Service Ref test case. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ protected void setFixture(ServiceRef fixture) { this.fixture = fixture; } /** * Returns the fixture for this Service Ref test case. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ protected ServiceRef getFixture() { return fixture; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see junit.framework.TestCase#setUp() * @generated */ @Override protected void setUp() throws Exception { setFixture(EipFactory.eINSTANCE.createServiceRef()); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see junit.framework.TestCase#tearDown() * @generated */ @Override protected void tearDown() throws Exception { setFixture(null); } } //ServiceRefTest