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