blob: 5aa25d42edd237a8532f83b12237078486f8d07b [file] [log] [blame]
package org.eclipse.stem.core.modifier.tests;
/*******************************************************************************
* Copyright (c) 2009, 2010, 2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018
* IBM Corporation, BfR, 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
* https://www.eclipse.org/legal/epl-2.0/
*
* Contributors:
* IBM Corporation - initial API and implementation and new features
* Bundesinstitut für Risikobewertung - Pajek Graph interface, new Veterinary Models
*******************************************************************************/
import org.eclipse.stem.core.modifier.SingleValueModifier;
/**
* <!-- begin-user-doc -->
* A test case for the model object '<em><b>Single Value Modifier</b></em>'.
* <!-- end-user-doc -->
* @generated
*/
public abstract class SingleValueModifierTest extends FeatureModifierTest {
/**
* Constructs a new Single Value Modifier test case with the given name.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public SingleValueModifierTest(String name) {
super(name);
}
/**
* Returns the fixture for this Single Value Modifier test case.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
protected SingleValueModifier getFixture() {
return (SingleValueModifier)fixture;
}
} //SingleValueModifierTest