blob: ec12ee69589733e2f57990ab6ff26d3affefd097 [file] [log] [blame]
/**
* Copyright (c) 2011, 2015 - Lunifera GmbH (Gross Enzersdorf, Austria), Loetz GmbH&Co.KG (69115 Heidelberg, Germany)
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* Florian Pirchner - Initial implementation
*/
package org.eclipse.osbp.ecview.semantic.uisemantics.tests;
import junit.framework.TestCase;
import junit.textui.TestRunner;
import org.eclipse.osbp.ecview.semantic.uisemantics.UiSemanticsFactory;
import org.eclipse.osbp.ecview.semantic.uisemantics.UxElementURI;
/**
* <!-- begin-user-doc -->
* A test case for the model object '<em><b>Ux Element URI</b></em>'.
* <!-- end-user-doc -->
* @generated
*/
public class UxElementURITest extends TestCase {
/**
* The fixture for this Ux Element URI test case.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
protected UxElementURI fixture = null;
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public static void main(String[] args) {
TestRunner.run(UxElementURITest.class);
}
/**
* Constructs a new Ux Element URI test case with the given name.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public UxElementURITest(String name) {
super(name);
}
/**
* Sets the fixture for this Ux Element URI test case.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
protected void setFixture(UxElementURI fixture) {
this.fixture = fixture;
}
/**
* Returns the fixture for this Ux Element URI test case.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
protected UxElementURI getFixture() {
return fixture;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see junit.framework.TestCase#setUp()
* @generated
*/
@Override
protected void setUp() throws Exception {
setFixture(UiSemanticsFactory.eINSTANCE.createUxElementURI());
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see junit.framework.TestCase#tearDown()
* @generated
*/
@Override
protected void tearDown() throws Exception {
setFixture(null);
}
} //UxElementURITest