blob: 9bce85d6c6a9d3183de43de43fefae9c291f93f0 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2004 - 2006 University Of British Columbia 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:
* University Of British Columbia - initial API and implementation
*******************************************************************************/
package org.eclipse.mylyn.internal.dltk.search;
import java.util.List;
import org.eclipse.dltk.core.IMethod;
import org.eclipse.dltk.core.IModelElement;
import org.eclipse.dltk.core.IType;
//import org.eclipse.mylyn.context.core.IDegreeOfSeparation;
import org.eclipse.mylyn.internal.dltk.DLTKStructureBridge;
public class DLTKTestingReferencesProvider extends AbstractDLTKRelationProvider {
public List getDegreesOfSeparation()
{
return null;
}
public static final String ID = ID_GENERIC + ".junitreferences";
public static final String NAME = "tested by";
public DLTKTestingReferencesProvider(DLTKStructureBridge bridge) {
super(bridge.contentType, ID, bridge);
}
protected boolean acceptResultElement(IModelElement element) {
if (element instanceof IMethod) {
IMethod method = (IMethod) element;
boolean isTestMethod = false;
boolean isTestCase = false;
if (method.getElementName().startsWith("test"))
isTestMethod = true;
IModelElement parent = method.getParent();
if (parent instanceof IType) {
IType type = (IType) parent;
isTestCase = false;//MylynContextTestUtil.isTestType(type);
}
return isTestMethod && isTestCase;
}
return false;
}
protected String getSourceId() {
return ID;
}
public String getName() {
return NAME;
}
}