blob: 1d6480c699108b53cc438716ca825fbdc225e332 [file] [log] [blame]
/*
* Copyright (c) 2005, 2018 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v2.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v20.html
*
* Contributors:
* IBM - initial API and implementation
* Kenn Hussey - 535301
*
*/
package org.eclipse.uml2.uml.tests;
import org.eclipse.uml2.uml.DirectedRelationship;
/**
* <!-- begin-user-doc -->
* A test case for the model object '<em><b>Directed Relationship</b></em>'.
* <!-- end-user-doc -->
* @generated
*/
public abstract class DirectedRelationshipTest
extends RelationshipTest {
/**
* Constructs a new Directed Relationship test case with the given name.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public DirectedRelationshipTest(String name) {
super(name);
}
/**
* Returns the fixture for this Directed Relationship test case.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
protected DirectedRelationship getFixture() {
return (DirectedRelationship) fixture;
}
} //DirectedRelationshipTest