blob: 7e3eefd31ed7538e497ec7a97a3460c3622fec24 [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.UiViewSet;
/**
* <!-- begin-user-doc -->
* A test case for the model object '<em><b>Ui View Set</b></em>'.
* <!-- end-user-doc -->
* @generated
*/
public class UiViewSetTest extends UiContextTest {
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public static void main(String[] args) {
TestRunner.run(UiViewSetTest.class);
}
/**
* Constructs a new Ui View Set test case with the given name.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public UiViewSetTest(String name) {
super(name);
}
/**
* Returns the fixture for this Ui View Set test case.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
protected UiViewSet getFixture() {
return (UiViewSet)fixture;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see junit.framework.TestCase#setUp()
* @generated
*/
@Override
protected void setUp() throws Exception {
setFixture(UiModelFactory.eINSTANCE.createUiViewSet());
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see junit.framework.TestCase#tearDown()
* @generated
*/
@Override
protected void tearDown() throws Exception {
setFixture(null);
}
} //UiViewSetTest