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