blob: d297bf1db6ad7b36d1436b253526c8b50eab8b2d [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.TypedElement;
/**
* <!-- begin-user-doc -->
* A test case for the model object '<em><b>Typed Element</b></em>'.
* <!-- end-user-doc -->
* @generated
*/
public abstract class TypedElementTest
extends NamedElementTest {
/**
* Constructs a new Typed Element test case with the given name.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public TypedElementTest(String name) {
super(name);
}
/**
* Returns the fixture for this Typed Element test case.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
protected TypedElement getFixture() {
return (TypedElement) fixture;
}
} //TypedElementTest