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