blob: ba2b65d7c83baf833c668e2e1e2e0677af8d43ac [file] [log] [blame]
package org.eclipse.stem.core.graph.tests;
/*******************************************************************************
* Copyright (c) 2006 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.graph.EdgeLabel;
/**
* <!-- begin-user-doc -->
* A test case for the model object '<em><b>Edge Label</b></em>'.
* <!-- end-user-doc -->
* @generated
*/
public abstract class EdgeLabelTest extends LabelTest {
/**
* Constructs a new Edge Label test case with the given name.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public EdgeLabelTest(String name) {
super(name);
}
/**
* Returns the fixture for this Edge Label test case.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
protected EdgeLabel getFixture() {
return (EdgeLabel)fixture;
}
} //EdgeLabelTest