/** * <copyright> * * Copyright (c) 2010 SAP AG. * 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: * Reiner Hille-Doering (SAP AG) - initial API and implementation and/or initial documentation * * </copyright> */ package org.eclipse.dd.di.tests; import org.eclipse.dd.di.Plane; /** * <!-- begin-user-doc --> * A test case for the model object '<em><b>Plane</b></em>'. * <!-- end-user-doc --> * <p> * The following operations are tested: * <ul> * <li>{@link org.eclipse.dd.di.Plane#plane_element_type(org.eclipse.emf.common.util.DiagnosticChain, java.util.Map) <em>Plane element type</em>}</li> * </ul> * </p> * @generated */ public abstract class PlaneTest extends NodeTest { /** * Constructs a new Plane test case with the given name. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public PlaneTest(String name) { super(name); } /** * Returns the fixture for this Plane test case. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override protected Plane getFixture() { return (Plane) fixture; } /** * Tests the '{@link org.eclipse.dd.di.Plane#plane_element_type(org.eclipse.emf.common.util.DiagnosticChain, java.util.Map) <em>Plane element type</em>}' operation. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see org.eclipse.dd.di.Plane#plane_element_type(org.eclipse.emf.common.util.DiagnosticChain, java.util.Map) * @generated */ public void testPlane_element_type__DiagnosticChain_Map() { // TODO: implement this operation test method // Ensure that you remove @generated or mark it @generated NOT fail(); } } //PlaneTest