blob: 7e30ff632118d12427b93a309ed745d703c8f3cb [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.uimodel.tests;
import junit.framework.TestCase;
import junit.textui.TestRunner;
import org.eclipse.osbp.ecview.semantic.uimodel.UiAddToTableCommand;
import org.eclipse.osbp.ecview.semantic.uimodel.UiModelFactory;
/**
* <!-- begin-user-doc -->
* A test case for the model object '<em><b>Ui Add To Table Command</b></em>'.
* <!-- end-user-doc -->
* @generated
*/
public class UiAddToTableCommandTest extends TestCase {
/**
* The fixture for this Ui Add To Table Command test case.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
protected UiAddToTableCommand fixture = null;
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public static void main(String[] args) {
TestRunner.run(UiAddToTableCommandTest.class);
}
/**
* Constructs a new Ui Add To Table Command test case with the given name.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public UiAddToTableCommandTest(String name) {
super(name);
}
/**
* Sets the fixture for this Ui Add To Table Command test case.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
protected void setFixture(UiAddToTableCommand fixture) {
this.fixture = fixture;
}
/**
* Returns the fixture for this Ui Add To Table Command test case.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
protected UiAddToTableCommand getFixture() {
return fixture;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see junit.framework.TestCase#setUp()
* @generated
*/
@Override
protected void setUp() throws Exception {
setFixture(UiModelFactory.eINSTANCE.createUiAddToTableCommand());
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see junit.framework.TestCase#tearDown()
* @generated
*/
@Override
protected void tearDown() throws Exception {
setFixture(null);
}
} //UiAddToTableCommandTest