blob: f1046f635c7690eac8ec0f9ef095e127a59585fd [file] [log] [blame]
package org.eclipse.stem.definitions.transport.tests;
/*******************************************************************************
* Copyright (c) 2007, 2008 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
import org.eclipse.stem.core.graph.tests.NodeTest;
import org.eclipse.stem.definitions.transport.TransportSystem;
/**
* <!-- begin-user-doc -->
* A test case for the model object '<em><b>System</b></em>'.
* <!-- end-user-doc -->
* @generated NOT
*/
public abstract class TransportSystemTest extends NodeTest {
/**
* The fixture for this System test case.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
protected TransportSystem fixture = null;
/**
* Constructs a new System test case with the given name.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public TransportSystemTest(String name) {
super(name);
}
/**
* Sets the fixture for this System test case.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
protected void setFixture(TransportSystem fixture) {
this.fixture = fixture;
}
/**
* Returns the fixture for this System test case.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
protected TransportSystem getFixture() {
return fixture;
}
} //TransportSystemTest