/** * <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.bpmn2.tests; import junit.framework.TestCase; import junit.textui.TestRunner; import org.eclipse.bpmn2.Bpmn2Factory; import org.eclipse.bpmn2.ExtensionAttributeValue; /** * <!-- begin-user-doc --> * A test case for the model object '<em><b>Extension Attribute Value</b></em>'. * <!-- end-user-doc --> * <p> * The following features are tested: * <ul> * <li>{@link org.eclipse.bpmn2.ExtensionAttributeValue#getValueRef() <em>Value Ref</em>}</li> * <li>{@link org.eclipse.bpmn2.ExtensionAttributeValue#getValue() <em>Value</em>}</li> * <li>{@link org.eclipse.bpmn2.ExtensionAttributeValue#getExtensionAttributeDefinition() <em>Extension Attribute Definition</em>}</li> * </ul> * </p> * @generated */ public class ExtensionAttributeValueTest extends TestCase { /** * The fixture for this Extension Attribute Value test case. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ protected ExtensionAttributeValue fixture = null; /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public static void main(String[] args) { TestRunner.run(ExtensionAttributeValueTest.class); } /** * Constructs a new Extension Attribute Value test case with the given name. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public ExtensionAttributeValueTest(String name) { super(name); } /** * Sets the fixture for this Extension Attribute Value test case. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ protected void setFixture(ExtensionAttributeValue fixture) { this.fixture = fixture; } /** * Returns the fixture for this Extension Attribute Value test case. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ protected ExtensionAttributeValue getFixture() { return fixture; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see junit.framework.TestCase#setUp() * @generated */ @Override protected void setUp() throws Exception { setFixture(Bpmn2Factory.eINSTANCE.createExtensionAttributeValue()); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see junit.framework.TestCase#tearDown() * @generated */ @Override protected void tearDown() throws Exception { setFixture(null); } /** * Tests the '{@link org.eclipse.bpmn2.ExtensionAttributeValue#getValueRef() <em>Value Ref</em>}' feature getter. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see org.eclipse.bpmn2.ExtensionAttributeValue#getValueRef() * @generated */ public void testGetValueRef() { // TODO: implement this feature getter test method // Ensure that you remove @generated or mark it @generated NOT fail(); } /** * Tests the '{@link org.eclipse.bpmn2.ExtensionAttributeValue#setValueRef(java.lang.Object) <em>Value Ref</em>}' feature setter. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see org.eclipse.bpmn2.ExtensionAttributeValue#setValueRef(java.lang.Object) * @generated */ public void testSetValueRef() { // TODO: implement this feature setter test method // Ensure that you remove @generated or mark it @generated NOT fail(); } /** * Tests the '{@link org.eclipse.bpmn2.ExtensionAttributeValue#getValue() <em>Value</em>}' feature getter. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see org.eclipse.bpmn2.ExtensionAttributeValue#getValue() * @generated */ public void testGetValue() { // TODO: implement this feature getter test method // Ensure that you remove @generated or mark it @generated NOT fail(); } /** * Tests the '{@link org.eclipse.bpmn2.ExtensionAttributeValue#setValue(java.lang.Object) <em>Value</em>}' feature setter. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see org.eclipse.bpmn2.ExtensionAttributeValue#setValue(java.lang.Object) * @generated */ public void testSetValue() { // TODO: implement this feature setter test method // Ensure that you remove @generated or mark it @generated NOT fail(); } /** * Tests the '{@link org.eclipse.bpmn2.ExtensionAttributeValue#getExtensionAttributeDefinition() <em>Extension Attribute Definition</em>}' feature getter. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see org.eclipse.bpmn2.ExtensionAttributeValue#getExtensionAttributeDefinition() * @generated */ public void testGetExtensionAttributeDefinition() { // TODO: implement this feature getter test method // Ensure that you remove @generated or mark it @generated NOT fail(); } /** * Tests the '{@link org.eclipse.bpmn2.ExtensionAttributeValue#setExtensionAttributeDefinition(org.eclipse.bpmn2.ExtensionAttributeDefinition) <em>Extension Attribute Definition</em>}' feature setter. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see org.eclipse.bpmn2.ExtensionAttributeValue#setExtensionAttributeDefinition(org.eclipse.bpmn2.ExtensionAttributeDefinition) * @generated */ public void testSetExtensionAttributeDefinition() { // TODO: implement this feature setter test method // Ensure that you remove @generated or mark it @generated NOT fail(); } } //ExtensionAttributeValueTest