blob: 3ad168f362d9cf81fee06f3ae1a79e329dda05f2 [file] [log] [blame]
package org.eclipse.stem.diseasemodels.forcing.tests;
/*******************************************************************************
* Copyright (c) 2010 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.framework.TestCase;
import junit.textui.TestRunner;
import org.eclipse.stem.diseasemodels.forcing.ForcingFactory;
import org.eclipse.stem.diseasemodels.forcing.Gaussian2ForcingDiseaseModel;
/**
* <!-- begin-user-doc -->
* A test case for the model object '<em><b>Gaussian2 Forcing Disease Model</b></em>'.
* <!-- end-user-doc -->
* @generated
*/
public class Gaussian2ForcingDiseaseModelTest extends TestCase {
/**
* The fixture for this Gaussian2 Forcing Disease Model test case.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
protected Gaussian2ForcingDiseaseModel fixture = null;
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public static void main(String[] args) {
TestRunner.run(Gaussian2ForcingDiseaseModelTest.class);
}
/**
* Constructs a new Gaussian2 Forcing Disease Model test case with the given name.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public Gaussian2ForcingDiseaseModelTest(String name) {
super(name);
}
/**
* Sets the fixture for this Gaussian2 Forcing Disease Model test case.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
protected void setFixture(Gaussian2ForcingDiseaseModel fixture) {
this.fixture = fixture;
}
/**
* Returns the fixture for this Gaussian2 Forcing Disease Model test case.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
protected Gaussian2ForcingDiseaseModel getFixture() {
return fixture;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see junit.framework.TestCase#setUp()
* @generated
*/
@Override
protected void setUp() throws Exception {
setFixture(ForcingFactory.eINSTANCE.createGaussian2ForcingDiseaseModel());
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see junit.framework.TestCase#tearDown()
* @generated
*/
@Override
protected void tearDown() throws Exception {
setFixture(null);
}
} //Gaussian2ForcingDiseaseModelTest