blob: 155e042cd2484c64e0ab1055375e20d126a228fa [file] [log] [blame]
/*
* Copyright (c) 2005 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* IBM - initial API and implementation
*
* $Id: FinalNodeTest.java,v 1.1 2006/02/21 16:32:26 khussey Exp $
*/
package org.eclipse.uml2.uml.tests;
import org.eclipse.uml2.uml.FinalNode;
/**
* <!-- begin-user-doc -->
* A test case for the model object '<em><b>Final Node</b></em>'.
* <!-- end-user-doc -->
* <p>
* The following operations are tested:
* <ul>
* <li>{@link org.eclipse.uml2.uml.FinalNode#validateNoOutgoingEdges(org.eclipse.emf.common.util.DiagnosticChain, java.util.Map) <em>Validate No Outgoing Edges</em>}</li>
* </ul>
* </p>
* @generated
*/
public abstract class FinalNodeTest
extends ControlNodeTest {
/**
* Constructs a new Final Node test case with the given name.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public FinalNodeTest(String name) {
super(name);
}
/**
* Returns the fixture for this Final Node test case.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
private FinalNode getFixture() {
return (FinalNode) fixture;
}
/**
* Tests the '{@link org.eclipse.uml2.uml.FinalNode#validateNoOutgoingEdges(org.eclipse.emf.common.util.DiagnosticChain, java.util.Map) <em>Validate No Outgoing Edges</em>}' operation.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see org.eclipse.uml2.uml.FinalNode#validateNoOutgoingEdges(org.eclipse.emf.common.util.DiagnosticChain, java.util.Map)
* @generated
*/
public void testValidateNoOutgoingEdges__DiagnosticChain_Map() {
// TODO: implement this feature getter test method
// Ensure that you remove @generated or mark it @generated NOT
}
} //FinalNodeTest