blob: 4a1788e0076c6b6a048d2612ee7801ffde4a59b8 [file] [log] [blame]
package org.eclipse.stem.diseasemodels.standard.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.core.model.IntegrationDecorator;
/**
* <!-- begin-user-doc -->
* A test case for the model object '<em><b>Integration Decorator</b></em>'.
* <!-- end-user-doc -->
* <p>
* The following operations are tested:
* <ul>
* <li>{@link org.eclipse.stem.core.model.IntegrationDecorator#isDeterministic() <em>Is Deterministic</em>}</li>
* </ul>
* </p>
* @generated
*/
public abstract class IntegrationDecoratorTest extends TestCase {
/**
* The fixture for this Integration Decorator test case.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
protected IntegrationDecorator fixture = null;
/**
* Constructs a new Integration Decorator test case with the given name.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public IntegrationDecoratorTest(String name) {
super(name);
}
/**
* Sets the fixture for this Integration Decorator test case.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
protected void setFixture(IntegrationDecorator fixture) {
this.fixture = fixture;
}
/**
* Returns the fixture for this Integration Decorator test case.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
protected IntegrationDecorator getFixture() {
return fixture;
}
/**
* Tests the '{@link org.eclipse.stem.core.model.IntegrationDecorator#isDeterministic() <em>Is Deterministic</em>}' operation.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see org.eclipse.stem.core.model.IntegrationDecorator#isDeterministic()
* @generated
*/
public void testIsDeterministic() {
// TODO: implement this operation test method
// Ensure that you remove @generated or mark it @generated NOT
fail();
}
} //IntegrationDecoratorTest