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