blob: 96f621ca01b3fc274d81cee5f8a714d821342543 [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 junit.framework.TestCase;
import org.eclipse.stem.core.modifier.Modifiable;
/**
* <!-- begin-user-doc -->
* A test case for the model object '<em><b>Modifiable</b></em>'.
* <!-- end-user-doc -->
* @generated
*/
public abstract class ModifiableTest extends TestCase {
/**
* The fixture for this Modifiable test case.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
protected Modifiable fixture = null;
/**
* Constructs a new Modifiable test case with the given name.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public ModifiableTest(String name) {
super(name);
}
/**
* Sets the fixture for this Modifiable test case.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
protected void setFixture(Modifiable fixture) {
this.fixture = fixture;
}
/**
* Returns the fixture for this Modifiable test case.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
protected Modifiable getFixture() {
return fixture;
}
} //ModifiableTest