blob: ff093442689d571bda30774ea05567111a386fdd [file] [log] [blame]
package org.eclipse.stem.definitions.types.tests;
/*******************************************************************************
* Copyright (c) 2009 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.definitions.types.Rate;
/**
* <!-- begin-user-doc -->
* A test case for the model object '<em><b>Rate</b></em>'.
* <!-- end-user-doc -->
* @generated
*/
public abstract class RateTest extends TestCase {
/**
* The fixture for this Rate test case.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
protected Rate fixture = null;
/**
* Constructs a new Rate test case with the given name.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public RateTest(String name) {
super(name);
}
/**
* Sets the fixture for this Rate test case.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
protected void setFixture(Rate fixture) {
this.fixture = fixture;
}
/**
* Returns the fixture for this Rate test case.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
protected Rate getFixture() {
return fixture;
}
} //RateTest