blob: 225ce8939eecd62d55f898a7d5516378e42ebece [file] [log] [blame]
/**
* Copyright (c) 2009, 2019 Mia-Software and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v2.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v20.html
*
* Contributors:
* Frederic Madiot (Mia-Software) - meta-model design
* Gregoire DUPE (Mia-Software) - design and implementation
*
*
* $Id$
*/
package org.eclipse.modisco.infra.query.tests.emf;
import org.eclipse.modisco.infra.query.ModelQuery;
import junit.framework.TestCase;
/**
* <!-- begin-user-doc -->
* A test case for the model object '<em><b>Model Query</b></em>'.
* <!-- end-user-doc -->
* @generated
*/
public abstract class ModelQueryTest extends TestCase {
/**
* The fixture for this Model Query test case.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
protected ModelQuery fixture = null;
/**
* Constructs a new Model Query test case with the given name.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public ModelQueryTest(String name) {
super(name);
}
/**
* Sets the fixture for this Model Query test case.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
protected void setFixture(ModelQuery fixture) {
this.fixture = fixture;
}
/**
* Returns the fixture for this Model Query test case.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
protected ModelQuery getFixture() {
return this.fixture;
}
} //ModelQueryTest