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