blob: 0a281f133f5332d82ca6e7b52be176b30aeb768c [file] [log] [blame]
/**
*/
package org.eclipse.osbp.infogrid.model.gridsource.tests;
import junit.framework.TestCase;
import junit.textui.TestRunner;
import org.eclipse.osbp.infogrid.model.gridsource.CxGridSourceFactory;
import org.eclipse.osbp.infogrid.model.gridsource.CxGridSourceInput;
/**
* <!-- begin-user-doc -->
* A test case for the model object '<em><b>Input</b></em>'.
* <!-- end-user-doc -->
* @generated
*/
public class CxGridSourceInputTest extends TestCase {
/**
* The fixture for this Input test case.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
protected CxGridSourceInput fixture = null;
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public static void main(String[] args) {
TestRunner.run(CxGridSourceInputTest.class);
}
/**
* Constructs a new Input test case with the given name.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public CxGridSourceInputTest(String name) {
super(name);
}
/**
* Sets the fixture for this Input test case.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
protected void setFixture(CxGridSourceInput fixture) {
this.fixture = fixture;
}
/**
* Returns the fixture for this Input test case.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
protected CxGridSourceInput getFixture() {
return fixture;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see junit.framework.TestCase#setUp()
* @generated
*/
@Override
protected void setUp() throws Exception {
setFixture(CxGridSourceFactory.eINSTANCE.createCxGridSourceInput());
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see junit.framework.TestCase#tearDown()
* @generated
*/
@Override
protected void tearDown() throws Exception {
setFixture(null);
}
} //CxGridSourceInputTest