blob: 0ded7e672a2526ae41d4da2a00856cc31c3de150 [file] [log] [blame]
package org.eclipse.stem.core.model.tests;
/*******************************************************************************
* Copyright (c) 2011 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 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#applyExternalDeltas(org.eclipse.stem.core.model.STEMTime, long, org.eclipse.emf.common.util.EList) <em>Apply External Deltas</em>}</li>
* <li>{@link org.eclipse.stem.core.model.IntegrationDecorator#calculateDelta(org.eclipse.stem.core.model.STEMTime, long, org.eclipse.emf.common.util.EList) <em>Calculate Delta</em>}</li>
* <li>{@link org.eclipse.stem.core.model.IntegrationDecorator#doModelSpecificAdjustments(org.eclipse.stem.core.graph.LabelValue) <em>Do Model Specific Adjustments</em>}</li>
* <li>{@link org.eclipse.stem.core.model.IntegrationDecorator#isDeterministic() <em>Is Deterministic</em>}</li>
* </ul>
* </p>
* @generated
*/
public abstract class IntegrationDecoratorTest extends NodeDecoratorTest {
/**
* Constructs a new Integration Decorator test case with the given name.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public IntegrationDecoratorTest(String name) {
super(name);
}
/**
* Returns the fixture for this Integration Decorator test case.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
protected IntegrationDecorator getFixture() {
return (IntegrationDecorator)fixture;
}
/**
* Tests the '{@link org.eclipse.stem.core.model.IntegrationDecorator#applyExternalDeltas(org.eclipse.stem.core.model.STEMTime, long, org.eclipse.emf.common.util.EList) <em>Apply External Deltas</em>}' operation.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see org.eclipse.stem.core.model.IntegrationDecorator#applyExternalDeltas(org.eclipse.stem.core.model.STEMTime, long, org.eclipse.emf.common.util.EList)
* @generated
*/
public void testApplyExternalDeltas__STEMTime_long_EList() {
// TODO: implement this operation test method
// Ensure that you remove @generated or mark it @generated NOT
fail();
}
/**
* Tests the '{@link org.eclipse.stem.core.model.IntegrationDecorator#calculateDelta(org.eclipse.stem.core.model.STEMTime, long, org.eclipse.emf.common.util.EList) <em>Calculate Delta</em>}' operation.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see org.eclipse.stem.core.model.IntegrationDecorator#calculateDelta(org.eclipse.stem.core.model.STEMTime, long, org.eclipse.emf.common.util.EList)
* @generated
*/
public void testCalculateDelta__STEMTime_long_EList() {
// TODO: implement this operation test method
// Ensure that you remove @generated or mark it @generated NOT
fail();
}
/**
* Tests the '{@link org.eclipse.stem.core.model.IntegrationDecorator#doModelSpecificAdjustments(org.eclipse.stem.core.graph.LabelValue) <em>Do Model Specific Adjustments</em>}' operation.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see org.eclipse.stem.core.model.IntegrationDecorator#doModelSpecificAdjustments(org.eclipse.stem.core.graph.LabelValue)
* @generated
*/
public void testDoModelSpecificAdjustments__LabelValue() {
// TODO: implement this operation test method
// Ensure that you remove @generated or mark it @generated NOT
fail();
}
/**
* 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