Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'deprecated/tests/org.eclipse.uml2.tests/src/org/eclipse/uml2/tests/ElementTest.java')
-rw-r--r--deprecated/tests/org.eclipse.uml2.tests/src/org/eclipse/uml2/tests/ElementTest.java32
1 files changed, 2 insertions, 30 deletions
diff --git a/deprecated/tests/org.eclipse.uml2.tests/src/org/eclipse/uml2/tests/ElementTest.java b/deprecated/tests/org.eclipse.uml2.tests/src/org/eclipse/uml2/tests/ElementTest.java
index fd412d51..34d76083 100644
--- a/deprecated/tests/org.eclipse.uml2.tests/src/org/eclipse/uml2/tests/ElementTest.java
+++ b/deprecated/tests/org.eclipse.uml2.tests/src/org/eclipse/uml2/tests/ElementTest.java
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2003, 2005 IBM Corporation and others.
+ * Copyright (c) 2003, 2006 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
@@ -8,7 +8,7 @@
* Contributors:
* IBM - initial API and implementation
*
- * $Id: ElementTest.java,v 1.3 2005/05/18 17:04:28 khussey Exp $
+ * $Id: ElementTest.java,v 1.4 2006/05/29 17:27:34 khussey Exp $
*/
package org.eclipse.uml2.tests;
@@ -86,21 +86,7 @@ public abstract class ElementTest extends TestCase {
return fixture;
}
- /**
- * Tests the '{@link org.eclipse.uml2.Element#getOwnedElements() <em>Owned Element</em>}' feature getter.
- * <!-- begin-user-doc -->
- * <!-- end-user-doc -->
- * @see org.eclipse.uml2.Element#getOwnedElements()
- * @generated
- */
- public void testGetOwnedElementsGen() {
- // TODO: implement this union feature getter test method
- // Ensure that you remove @generated or mark it @generated NOT
- }
-
public void testGetOwnedElements() {
- testGetOwnedElementsGen();
-
setUpOwnedElements();
for (Iterator ownedElements = getFixture().getOwnedElements().iterator(); ownedElements.hasNext();) {
@@ -110,20 +96,7 @@ public abstract class ElementTest extends TestCase {
assertTrue(getFixture().getOwnedElements().containsAll(getFixture().getOwnedComments()));
}
- /**
- * Tests the '{@link org.eclipse.uml2.Element#getOwner() <em>Owner</em>}' feature getter.
- * <!-- begin-user-doc -->
- * <!-- end-user-doc -->
- * @see org.eclipse.uml2.Element#getOwner()
- * @generated
- */
- public void testGetOwnerGen() {
- // TODO: implement this union feature getter test method
- // Ensure that you remove @generated or mark it @generated NOT
- }
public void testGetOwner() {
- testGetOwnerGen();
-
setUpOwner();
if (null != getFixture().eContainer()) {
@@ -192,7 +165,6 @@ public abstract class ElementTest extends TestCase {
}
-
public void testMustBeOwned() {
testMustBeOwnedGen();

Back to the top