/** * <copyright> * </copyright> * * $Id$ */ package org.openscada.vi.model.VisualInterface.tests; import junit.framework.TestCase; import org.openscada.vi.model.VisualInterface.Primitive; /** * <!-- begin-user-doc --> * A test case for the model object '<em><b>Primitive</b></em>'. * <!-- end-user-doc --> * @generated */ public abstract class PrimitiveTest extends TestCase { /** * The fixture for this Primitive test case. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ protected Primitive fixture = null; /** * Constructs a new Primitive test case with the given name. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public PrimitiveTest(String name) { super(name); } /** * Sets the fixture for this Primitive test case. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ protected void setFixture(Primitive fixture) { this.fixture = fixture; } /** * Returns the fixture for this Primitive test case. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ protected Primitive getFixture() { return fixture; } } //PrimitiveTest