blob: 82b9251f5d98ed2cfa1950fafcd7141d23e4dae1 [file] [log] [blame]
package org.eclipse.stem.graphgenerators.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 junit.framework.TestCase;
import org.eclipse.stem.graphgenerators.GraphGenerator;
/**
* <!-- begin-user-doc -->
* A test case for the model object '<em><b>Graph Generator</b></em>'.
* <!-- end-user-doc -->
* <p>
* The following operations are tested:
* <ul>
* <li>{@link org.eclipse.stem.graphgenerators.GraphGenerator#getGraph() <em>Get Graph</em>}</li>
* </ul>
* </p>
* @generated
*/
public abstract class GraphGeneratorTest extends TestCase {
/**
* The fixture for this Graph Generator test case.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
protected GraphGenerator fixture = null;
/**
* Constructs a new Graph Generator test case with the given name.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public GraphGeneratorTest(String name) {
super(name);
}
/**
* Sets the fixture for this Graph Generator test case.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
protected void setFixture(GraphGenerator fixture) {
this.fixture = fixture;
}
/**
* Returns the fixture for this Graph Generator test case.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
protected GraphGenerator getFixture() {
return fixture;
}
/**
* Tests the '{@link org.eclipse.stem.graphgenerators.GraphGenerator#getGraph() <em>Get Graph</em>}' operation.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see org.eclipse.stem.graphgenerators.GraphGenerator#getGraph()
* @generated NOT
*/
public void testGetGraph() {
// need to implement specific tests only
// nothing to test here
}
} //GraphGeneratorTest