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