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