blob: 65f596d7c7bc2e7d8c2714441ce8e00379505c3a [file] [log] [blame]
/*******************************************************************************
* Copyright (c) {2007-2008} {INRIA and Engineering}.
* 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:
* {Adrian Mos (INRIA) and Andrea Zoppello (Engineering)} - initial API and implementation
*******************************************************************************/
package org.eclipse.soa.mangrove.tests;
import junit.framework.TestCase;
import org.eclipse.soa.mangrove.Condition;
/**
* <!-- begin-user-doc -->
* A test case for the model object '<em><b>Condition</b></em>'.
* <!-- end-user-doc -->
* @generated
*/
public abstract class ConditionTest extends TestCase {
/**
* The fixture for this Condition test case.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
protected Condition fixture = null;
/**
* Constructs a new Condition test case with the given name.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public ConditionTest(String name) {
super(name);
}
/**
* Sets the fixture for this Condition test case.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
protected void setFixture(Condition fixture) {
this.fixture = fixture;
}
/**
* Returns the fixture for this Condition test case.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
protected Condition getFixture() {
return fixture;
}
} //ConditionTest