blob: c2030d37a35cf821345f564ad330c9a020dbe6a0 [file] [log] [blame]
/*
* Copyright (c) 2003, 2004 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Common Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/cpl-v10.html
*
* Contributors:
* IBM - Initial API and implementation
*
* $Id: ProtocolTransitionItemProviderTest.java,v 1.1 2004/04/29 14:43:45 khussey Exp $
*/
package org.eclipse.uml2.provider.tests;
import junit.textui.TestRunner;
import org.eclipse.uml2.ProtocolTransition;
import org.eclipse.uml2.UML2Factory;
/**
* <!-- begin-user-doc -->
* A test case for the '<em><b>Protocol Transition</b></em>' item provider adapter.
* <!-- end-user-doc -->
* @generated
*/
public class ProtocolTransitionItemProviderTest extends TransitionItemProviderTest {
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public static final String copyright = "Copyright (c) 2003, 2004 IBM Corporation and others."; //$NON-NLS-1$
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public static void main(String[] args) {
TestRunner.run(ProtocolTransitionItemProviderTest.class);
}
/**
* Constructs a new Protocol Transition item provider adapter test case with the given name.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public ProtocolTransitionItemProviderTest(String name) {
super(name);
}
/**
* Returns the model object for this Protocol Transition item provider adapter test case.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
private ProtocolTransition getModelObject() {
return (ProtocolTransition) modelObject;
}
/* (non-Javadoc)
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see junit.framework.TestCase#setUp()
* @generated
*/
protected void setUp() throws Exception {
super.setUp();
setModelObject(UML2Factory.eINSTANCE.createProtocolTransition());
}
/**
* Tests the '{@link org.eclipse.uml2.provider.ProtocolTransitionItemProvider#createSetCommand(org.eclipse.emf.edit.domain.EditingDomain, org.eclipse.emf.ecore.EObject, org.eclipse.emf.ecore.EStructuralFeature, java.lang.Object) <em>Create Set Command</em>}' method.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see org.eclipse.uml2.provider.ProtocolTransitionItemProvider#createSetCommand(org.eclipse.emf.edit.domain.EditingDomain, org.eclipse.emf.ecore.EObject, org.eclipse.emf.ecore.EStructuralFeature, java.lang.Object)
* @generated
*/
public void testCreateSetCommand() {
// TODO: implement this command creation test method
}
} //ProtocolTransitionItemProviderTest