blob: f9d839e5eae5a22a9753327193c002a736249873 [file] [log] [blame]
/**********************************************************************
* This file is part of "Object Teams Development Tooling"-Software
*
* Copyright 2004, 2010 Fraunhofer Gesellschaft, Munich, Germany,
* for its Fraunhofer Institute and Computer Architecture and Software
* Technology (FIRST), Berlin, Germany and Technical University Berlin,
* Germany.
*
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Please visit http://www.eclipse.org/objectteams for updates and contact.
*
* Contributors:
* Fraunhofer FIRST - Initial API and implementation
* Technical University Berlin - Initial API and implementation
**********************************************************************/
package org.eclipse.objectteams.otdt.tests.otmodel.anonymousinnerclass.rolelevel.internal;
import org.eclipse.jdt.core.IField;
import org.eclipse.jdt.core.IType;
import org.eclipse.jdt.core.JavaModelException;
/**
*
* superclass for all testcases
* in which an instance of an anonymous class is assigned to an attribut
*/
public abstract class AttributeAssignmentTest extends GeneralTest
{
private final String ATTR_NAME = "rolelevelAttr";
public AttributeAssignmentTest(String name)
{
super(name);
}
protected IType getAnonymousType() throws JavaModelException
{
IType fieldOwner = _roleJavaElem;
if ((fieldOwner != null) && (fieldOwner.exists()))
{
IField enclosingField = fieldOwner.getField(ATTR_NAME);
if ((enclosingField != null) && (enclosingField.exists()))
{
IType anonymousType = enclosingField.getType("",1);
if ((anonymousType != null) && (anonymousType.exists()))
{
return anonymousType;
}
}
}
return null;
}
public void testExistenceOfAnonymousType() throws JavaModelException
{
assertNotNull(_roleJavaElem);
assertTrue(_roleJavaElem.exists());
IField rolelevelAttr = _roleJavaElem.getField(ATTR_NAME);
assertNotNull(rolelevelAttr);
assertTrue(rolelevelAttr.exists());
IType anonymousType = rolelevelAttr.getType("",1);
assertNotNull(anonymousType);
assertTrue(anonymousType.exists());
}
}