blob: aedc6dbf724d3cff3555ff272c38a7be122a4ae0 [file] [log] [blame]
package org.eclipse.stem.populationmodels.standard.tests;
/*******************************************************************************
* Copyright (c) 2011 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.populationmodels.standard.MosquitoPopulationModel;
import org.eclipse.stem.populationmodels.standard.StandardFactory;
/**
* <!-- begin-user-doc -->
* A test case for the model object '<em><b>Mosquito Population Model</b></em>'.
* <!-- end-user-doc -->
* @generated
*/
public class MosquitoPopulationModelTest extends PopulationModelTest {
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public static void main(String[] args) {
TestRunner.run(MosquitoPopulationModelTest.class);
}
/**
* Constructs a new Mosquito Population Model test case with the given name.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public MosquitoPopulationModelTest(String name) {
super(name);
}
/**
* Returns the fixture for this Mosquito Population Model test case.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
protected MosquitoPopulationModel getFixture() {
return (MosquitoPopulationModel)fixture;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see junit.framework.TestCase#setUp()
* @generated
*/
@Override
protected void setUp() throws Exception {
setFixture(StandardFactory.eINSTANCE.createMosquitoPopulationModel());
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see junit.framework.TestCase#tearDown()
* @generated
*/
@Override
protected void tearDown() throws Exception {
setFixture(null);
}
public void testMosquitoPopModel() {
// ToDO: Implement
assert(true);
}
} //MosquitoPopulationModelTest