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