/** */ package com.github.lbroudoux.dsl.eip.tests; import com.github.lbroudoux.dsl.eip.Metadatable; import junit.framework.TestCase; /** * <!-- begin-user-doc --> * A test case for the model object '<em><b>Metadatable</b></em>'. * <!-- end-user-doc --> * @generated */ public abstract class MetadatableTest extends TestCase { /** * The fixture for this Metadatable test case. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ protected Metadatable fixture = null; /** * Constructs a new Metadatable test case with the given name. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public MetadatableTest(String name) { super(name); } /** * Sets the fixture for this Metadatable test case. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ protected void setFixture(Metadatable fixture) { this.fixture = fixture; } /** * Returns the fixture for this Metadatable test case. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ protected Metadatable getFixture() { return fixture; } } //MetadatableTest