blob: 1948799685023a471decf4791df165a97858aaf6 [file] [log] [blame]
/*
* Copyright (c) 2003, 2005 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 - initial API and implementation
*
* $Id: ValueSpecificationTest.java,v 1.2 2005/04/20 19:00:46 khussey Exp $
*/
package org.eclipse.uml2.tests;
import org.eclipse.uml2.ValueSpecification;
/**
* <!-- begin-user-doc -->
* A test case for the model object '<em><b>Value Specification</b></em>'.
* <!-- end-user-doc -->
* <p>
* The following features are tested:
* <ul>
* <li>{@link org.eclipse.uml2.ParameterableElement#getTemplateParameter() <em>Template Parameter</em>}</li>
* <li>{@link org.eclipse.uml2.ParameterableElement#getOwningParameter() <em>Owning Parameter</em>}</li>
* </ul>
* </p>
* <p>
* The following operations are tested:
* <ul>
* <li>{@link org.eclipse.uml2.ParameterableElement#getOwner() <em>Get Owner</em>}</li>
* <li>{@link org.eclipse.uml2.ValueSpecification#isComputable() <em>Is Computable</em>}</li>
* <li>{@link org.eclipse.uml2.ValueSpecification#integerValue() <em>Integer Value</em>}</li>
* <li>{@link org.eclipse.uml2.ValueSpecification#booleanValue() <em>Boolean Value</em>}</li>
* <li>{@link org.eclipse.uml2.ValueSpecification#stringValue() <em>String Value</em>}</li>
* <li>{@link org.eclipse.uml2.ValueSpecification#unlimitedValue() <em>Unlimited Value</em>}</li>
* <li>{@link org.eclipse.uml2.ValueSpecification#isNull() <em>Is Null</em>}</li>
* </ul>
* </p>
* @generated
*/
public abstract class ValueSpecificationTest extends TypedElementTest {
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public static final String copyright = "Copyright (c) 2003, 2005 IBM Corporation and others."; //$NON-NLS-1$
/**
* Constructs a new Value Specification test case with the given name.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public ValueSpecificationTest(String name) {
super(name);
}
/**
* Returns the fixture for this Value Specification test case.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
private ValueSpecification getFixture() {
return (ValueSpecification)fixture;
}
/**
* Tests the '{@link org.eclipse.uml2.ParameterableElement#getTemplateParameter() <em>Template Parameter</em>}' feature getter.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see org.eclipse.uml2.ParameterableElement#getTemplateParameter()
* @generated
*/
public void testGetTemplateParameter() {
// TODO: implement this feature getter test method
// Ensure that you remove @generated or mark it @generated NOT
}
/**
* Tests the '{@link org.eclipse.uml2.ParameterableElement#setTemplateParameter(org.eclipse.uml2.TemplateParameter) <em>Template Parameter</em>}' feature setter.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see org.eclipse.uml2.ParameterableElement#setTemplateParameter(org.eclipse.uml2.TemplateParameter)
* @generated
*/
public void testSetTemplateParameter() {
// TODO: implement this feature setter test method
// Ensure that you remove @generated or mark it @generated NOT
}
/**
* Tests the '{@link org.eclipse.uml2.ParameterableElement#getOwningParameter() <em>Owning Parameter</em>}' feature getter.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see org.eclipse.uml2.ParameterableElement#getOwningParameter()
* @generated
*/
public void testGetOwningParameter() {
// TODO: implement this feature getter test method
// Ensure that you remove @generated or mark it @generated NOT
}
/**
* Tests the '{@link org.eclipse.uml2.ParameterableElement#setOwningParameter(org.eclipse.uml2.TemplateParameter) <em>Owning Parameter</em>}' feature setter.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see org.eclipse.uml2.ParameterableElement#setOwningParameter(org.eclipse.uml2.TemplateParameter)
* @generated
*/
public void testSetOwningParameter() {
// TODO: implement this feature setter test method
// Ensure that you remove @generated or mark it @generated NOT
}
/**
* Tests the '{@link org.eclipse.uml2.ParameterableElement#getOwner() <em>Get Owner</em>}' getter operation.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see org.eclipse.uml2.ParameterableElement#getOwner()
* @generated
*/
public void testGetOwnerGen() {
// TODO: implement this getter operation test method
// Ensure that you remove @generated or mark it @generated NOT
}
public void testGetOwner() {
testGetOwnerGen();
super.testGetOwner();
if (null != getFixture().getOwningParameter()) {
assertSame(getFixture().getOwningParameter(), getFixture().getOwner());
}
}
/**
* Tests the '{@link org.eclipse.uml2.ValueSpecification#isComputable() <em>Is Computable</em>}' operation.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see org.eclipse.uml2.ValueSpecification#isComputable()
* @generated
*/
public void testIsComputableGen() {
// TODO: implement this operation test method
// Ensure that you remove @generated or mark it @generated NOT
}
public void testIsComputable() {
testIsComputableGen();
assertFalse(getFixture().isComputable());
}
/**
* Tests the '{@link org.eclipse.uml2.ValueSpecification#integerValue() <em>Integer Value</em>}' operation.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see org.eclipse.uml2.ValueSpecification#integerValue()
* @generated
*/
public void testIntegerValueGen() {
// TODO: implement this operation test method
// Ensure that you remove @generated or mark it @generated NOT
}
public void testIntegerValue() {
testIntegerValueGen();
try {
getFixture().integerValue();
fail();
} catch (UnsupportedOperationException uoe) {
// pass
}
}
/**
* Tests the '{@link org.eclipse.uml2.ValueSpecification#booleanValue() <em>Boolean Value</em>}' operation.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see org.eclipse.uml2.ValueSpecification#booleanValue()
* @generated
*/
public void testBooleanValueGen() {
// TODO: implement this operation test method
// Ensure that you remove @generated or mark it @generated NOT
}
public void testBooleanValue() {
testBooleanValueGen();
try {
getFixture().booleanValue();
fail();
} catch (UnsupportedOperationException uoe) {
// pass
}
}
/**
* Tests the '{@link org.eclipse.uml2.ValueSpecification#stringValue() <em>String Value</em>}' operation.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see org.eclipse.uml2.ValueSpecification#stringValue()
* @generated
*/
public void testStringValueGen() {
// TODO: implement this operation test method
// Ensure that you remove @generated or mark it @generated NOT
}
public void testStringValue() {
testStringValueGen();
assertEquals("", getFixture().stringValue()); //$NON-NLS-1$
}
/**
* Tests the '{@link org.eclipse.uml2.ValueSpecification#unlimitedValue() <em>Unlimited Value</em>}' operation.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see org.eclipse.uml2.ValueSpecification#unlimitedValue()
* @generated
*/
public void testUnlimitedValueGen() {
// TODO: implement this operation test method
// Ensure that you remove @generated or mark it @generated NOT
}
public void testUnlimitedValue() {
testUnlimitedValueGen();
try {
getFixture().unlimitedValue();
fail();
} catch (UnsupportedOperationException uoe) {
// pass
}
}
/**
* Tests the '{@link org.eclipse.uml2.ValueSpecification#isNull() <em>Is Null</em>}' operation.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see org.eclipse.uml2.ValueSpecification#isNull()
* @generated
*/
public void testIsNullGen() {
// TODO: implement this operation test method
// Ensure that you remove @generated or mark it @generated NOT
}
public void testIsNull() {
testIsNullGen();
assertFalse(getFixture().isNull());
}
} //ValueSpecificationImplTest