blob: a17931d65afd6bd3732a4e797c55091615cd2b6c [file] [log] [blame]
package org.eclipse.stem.graphgenerators.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.graphgenerators.GraphgeneratorsFactory;
import org.eclipse.stem.graphgenerators.MigrationEdgeGraphGenerator;
/**
* <!-- begin-user-doc -->
* A test case for the model object '<em><b>Migration Edge Graph Generator</b></em>'.
* <!-- end-user-doc -->
* @generated
*/
public class MigrationEdgeGraphGeneratorTest extends GraphGeneratorTest {
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public static void main(String[] args) {
TestRunner.run(MigrationEdgeGraphGeneratorTest.class);
}
/**
* Constructs a new Migration Edge Graph Generator test case with the given name.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public MigrationEdgeGraphGeneratorTest(String name) {
super(name);
}
/**
* Returns the fixture for this Migration Edge Graph Generator test case.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
protected MigrationEdgeGraphGenerator getFixture() {
return (MigrationEdgeGraphGenerator)fixture;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see junit.framework.TestCase#setUp()
* @generated
*/
@Override
protected void setUp() throws Exception {
setFixture(GraphgeneratorsFactory.eINSTANCE.createMigrationEdgeGraphGenerator());
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see junit.framework.TestCase#tearDown()
* @generated
*/
@Override
protected void tearDown() throws Exception {
setFixture(null);
}
} //MigrationEdgeGraphGeneratorTest