blob: 36d1df3b8dec6176d270ab61577afc09a79c4dbc [file] [log] [blame]
/**
*/
package monitoringxml.tests;
import org.polarsys.chess.monitoring.monitoringxml.ExecutionTime;
import org.polarsys.chess.monitoring.monitoringxml.MonitoringxmlFactory;
import junit.framework.TestCase;
import junit.textui.TestRunner;
/**
* <!-- begin-user-doc -->
* A test case for the model object '<em><b>Execution Time</b></em>'.
* <!-- end-user-doc -->
* @generated
*/
public class ExecutionTimeTest extends TestCase {
/**
* The fixture for this Execution Time test case.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
protected ExecutionTime fixture = null;
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public static void main(String[] args) {
TestRunner.run(ExecutionTimeTest.class);
}
/**
* Constructs a new Execution Time test case with the given name.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public ExecutionTimeTest(String name) {
super(name);
}
/**
* Sets the fixture for this Execution Time test case.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
protected void setFixture(ExecutionTime fixture) {
this.fixture = fixture;
}
/**
* Returns the fixture for this Execution Time test case.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
protected ExecutionTime getFixture() {
return fixture;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see junit.framework.TestCase#setUp()
* @generated
*/
@Override
protected void setUp() throws Exception {
setFixture(MonitoringxmlFactory.eINSTANCE.createExecutionTime());
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see junit.framework.TestCase#tearDown()
* @generated
*/
@Override
protected void tearDown() throws Exception {
setFixture(null);
}
} //ExecutionTimeTest