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