/******************************************************************************* * Copyright (c) 2010 Martin Schnabel <mb0@mb0.org>. * 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 ******************************************************************************/ package org.axdt.avm.model; import junit.framework.TestCase; /** * <!-- begin-user-doc --> * A test case for the model object '<em><b>Avm Identifiable</b></em>'. * <!-- end-user-doc --> * <p> * The following operations are tested: * <ul> * <li>{@link org.axdt.avm.model.AvmIdentifiable#getName() <em>Get Name</em>}</li> * </ul> * </p> * @generated */ public abstract class AvmIdentifiableTest extends TestCase { /** * The fixture for this Avm Identifiable test case. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ protected AvmIdentifiable fixture = null; /** * Constructs a new Avm Identifiable test case with the given name. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public AvmIdentifiableTest(String name) { super(name); } /** * Sets the fixture for this Avm Identifiable test case. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ protected void setFixture(AvmIdentifiable fixture) { this.fixture = fixture; } /** * Returns the fixture for this Avm Identifiable test case. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ protected AvmIdentifiable getFixture() { return fixture; } /** * Tests the '{@link org.axdt.avm.model.AvmIdentifiable#getName() <em>Get Name</em>}' operation. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see org.axdt.avm.model.AvmIdentifiable#getName() * @generated */ public void testGetName() { // TODO: implement this operation test method // Ensure that you remove @generated or mark it @generated NOT fail(); } } //AvmIdentifiableTest