blob: 8f358a10157eec9f971ae1ff40d976e7b83fcafc [file] [log] [blame]
package org.eclipse.stem.core.modifier.tests;
/*******************************************************************************
* Copyright (c) 2008 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
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