/** * Copyright (c) 2015-2016 Obeo, Inria * * 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: * - William Piers <william.piers@obeo.fr> * - Philippe Merle <philippe.merle@inria.fr> */ package org.occiware.clouddesigner.occi.tests; import junit.framework.TestCase; import org.occiware.clouddesigner.occi.Category; /** * <!-- begin-user-doc --> * A test case for the model object '<em><b>Category</b></em>'. * <!-- end-user-doc --> * <p> * The following operations are tested: * <ul> * <li>{@link org.occiware.clouddesigner.occi.Category#AttributesNameUnique(org.eclipse.emf.common.util.DiagnosticChain, java.util.Map) <em>Attributes Name Unique</em>}</li> * <li>{@link org.occiware.clouddesigner.occi.Category#IdentityUnique(org.eclipse.emf.common.util.DiagnosticChain, java.util.Map) <em>Identity Unique</em>}</li> * <li>{@link org.occiware.clouddesigner.occi.Category#SchemeEndsWithSharp(org.eclipse.emf.common.util.DiagnosticChain, java.util.Map) <em>Scheme Ends With Sharp</em>}</li> * </ul> * </p> * @generated */ public abstract class CategoryTest extends TestCase { /** * The fixture for this Category test case. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ protected Category fixture = null; /** * Constructs a new Category test case with the given name. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public CategoryTest(String name) { super(name); } /** * Sets the fixture for this Category test case. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ protected void setFixture(Category fixture) { this.fixture = fixture; } /** * Returns the fixture for this Category test case. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ protected Category getFixture() { return fixture; } /** * Tests the '{@link org.occiware.clouddesigner.occi.Category#AttributesNameUnique(org.eclipse.emf.common.util.DiagnosticChain, java.util.Map) <em>Attributes Name Unique</em>}' operation. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see org.occiware.clouddesigner.occi.Category#AttributesNameUnique(org.eclipse.emf.common.util.DiagnosticChain, java.util.Map) * @generated */ public void testAttributesNameUnique__DiagnosticChain_Map() { // TODO: implement this operation test method // Ensure that you remove @generated or mark it @generated NOT fail(); } /** * Tests the '{@link org.occiware.clouddesigner.occi.Category#IdentityUnique(org.eclipse.emf.common.util.DiagnosticChain, java.util.Map) <em>Identity Unique</em>}' operation. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see org.occiware.clouddesigner.occi.Category#IdentityUnique(org.eclipse.emf.common.util.DiagnosticChain, java.util.Map) * @generated */ public void testIdentityUnique__DiagnosticChain_Map() { // TODO: implement this operation test method // Ensure that you remove @generated or mark it @generated NOT fail(); } /** * Tests the '{@link org.occiware.clouddesigner.occi.Category#SchemeEndsWithSharp(org.eclipse.emf.common.util.DiagnosticChain, java.util.Map) <em>Scheme Ends With Sharp</em>}' operation. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see org.occiware.clouddesigner.occi.Category#SchemeEndsWithSharp(org.eclipse.emf.common.util.DiagnosticChain, java.util.Map) * @generated */ public void testSchemeEndsWithSharp__DiagnosticChain_Map() { // TODO: implement this operation test method // Ensure that you remove @generated or mark it @generated NOT fail(); } } //CategoryTest