blob: 7c86edb6fd657b6cfef1e288d602905a18f8c27d [file] [log] [blame]
/**
*/
package org.eclipse.osbp.ecview.semantic.uimodel.tests;
import junit.textui.TestRunner;
import org.eclipse.osbp.ecview.semantic.uimodel.UiDateField;
import org.eclipse.osbp.ecview.semantic.uimodel.UiModelFactory;
/**
* <!-- begin-user-doc -->
* A test case for the model object '<em><b>Ui Date Field</b></em>'.
* <!-- end-user-doc -->
* @generated
*/
public class UiDateFieldTest extends UiVisibilityProcessableTest {
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public static void main(String[] args) {
TestRunner.run(UiDateFieldTest.class);
}
/**
* Constructs a new Ui Date Field test case with the given name.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public UiDateFieldTest(String name) {
super(name);
}
/**
* Returns the fixture for this Ui Date Field test case.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
protected UiDateField getFixture() {
return (UiDateField)fixture;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see junit.framework.TestCase#setUp()
* @generated
*/
@Override
protected void setUp() throws Exception {
setFixture(UiModelFactory.eINSTANCE.createUiDateField());
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see junit.framework.TestCase#tearDown()
* @generated
*/
@Override
protected void tearDown() throws Exception {
setFixture(null);
}
} //UiDateFieldTest