blob: 371a158bdc02075b19c6ea83c589a5bf617e4408 [file] [log] [blame]
package org.eclipse.stem.diseasemodels.standard.tests;
/*******************************************************************************
* Copyright (c) 2006 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.diseasemodels.standard.StandardInfector;
/**
* <!-- begin-user-doc --> A test case for the model object '<em><b>Infector</b></em>'.
* <!-- end-user-doc -->
* @generated
*/
public abstract class StandardInfectorTest extends InfectorTest {
/**
* Constructs a new Infector test case with the given name. <!--
* begin-user-doc -->
*
* @param name
*
* <!-- end-user-doc -->
* @generated
*/
public StandardInfectorTest(String name) {
super(name);
}
/**
* Returns the fixture for this Infector test case.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
protected StandardInfector getFixture() {
return (StandardInfector)fixture;
}
} // StandardInfectorTest