blob: cca187bcf3cb3952d759b8c5e9bd73acaa6aca32 [file] [log] [blame]
/**
* <copyright>
* </copyright>
*
* $Id$
*/
package org.eclipse.stem.graphgenerators.tests;
import junit.textui.TestRunner;
import org.eclipse.stem.graphgenerators.GraphgeneratorsFactory;
import org.eclipse.stem.graphgenerators.ShapefileGraphGenerator;
/**
* <!-- begin-user-doc -->
* A test case for the model object '<em><b>Shapefile Graph Generator</b></em>'.
* <!-- end-user-doc -->
* @generated
*/
public class ShapefileGraphGeneratorTest extends GraphGeneratorTest {
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public static void main(String[] args) {
TestRunner.run(ShapefileGraphGeneratorTest.class);
}
/**
* Constructs a new Shapefile Graph Generator test case with the given name.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public ShapefileGraphGeneratorTest(String name) {
super(name);
}
/**
* Returns the fixture for this Shapefile Graph Generator test case.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
protected ShapefileGraphGenerator getFixture() {
return (ShapefileGraphGenerator)fixture;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see junit.framework.TestCase#setUp()
* @generated
*/
@Override
protected void setUp() throws Exception {
setFixture(GraphgeneratorsFactory.eINSTANCE.createShapefileGraphGenerator());
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see junit.framework.TestCase#tearDown()
* @generated
*/
@Override
protected void tearDown() throws Exception {
setFixture(null);
}
} //ShapefileGraphGeneratorTest