blob: 4f9bd0e787cb210d1a62100792ddd2ffce85dfed [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 junit.textui.TestRunner;
import org.eclipse.stem.diseasemodels.standard.AggregatingSIRDiseaseModel;
import org.eclipse.stem.diseasemodels.standard.StandardFactory;
/**
* <!-- begin-user-doc -->
* A test case for the model object '<em><b>Aggregating SIR Disease Model</b></em>'.
* <!-- end-user-doc -->
* @generated
*/
@SuppressWarnings("all")
public class AggregatingSIRDiseaseModelTest extends AggregatingSIDiseaseModelTest {
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public static void main(String[] args) {
TestRunner.run(AggregatingSIRDiseaseModelTest.class);
}
/**
* Constructs a new Aggregating SIR Disease Model test case with the given name.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public AggregatingSIRDiseaseModelTest(String name) {
super(name);
}
/**
* Returns the fixture for this Aggregating SIR Disease Model test case.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
protected AggregatingSIRDiseaseModel getFixture() {
return (AggregatingSIRDiseaseModel)fixture;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see junit.framework.TestCase#setUp()
* @generated
*/
@Override
protected void setUp() throws Exception {
setFixture(StandardFactory.eINSTANCE.createAggregatingSIRDiseaseModel());
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see junit.framework.TestCase#tearDown()
* @generated
*/
@Override
protected void tearDown() throws Exception {
setFixture(null);
}
} // AggregatingSIRDiseaseModelTest