/* * Copyright 2000-2015 JetBrains s.r.o. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.intellij.execution.junit.codeInsight; import com.intellij.codeInsight.daemon.quickFix.ExternalLibraryResolver; import com.intellij.execution.junit.JUnitExternalLibraryDescriptor; import com.intellij.openapi.module.Module; import com.intellij.openapi.roots.ExternalLibraryDescriptor; import com.intellij.util.ThreeState; import com.intellij.util.containers.ContainerUtil; import org.jetbrains.annotations.NotNull; import org.jetbrains.annotations.Nullable; import java.util.Set; /** * @author nik */ public class JUnitExternalLibraryResolver extends ExternalLibraryResolver { private static final Set<String> JUNIT4_ANNOTATIONS = ContainerUtil.set( "Test", "Ignore", "RunWith", "Before", "BeforeClass", "After", "AfterClass" ); @Nullable @Override public ExternalClassResolveResult resolveClass(@NotNull String shortClassName, @NotNull ThreeState isAnnotation, @NotNull Module contextModule) { if ("TestCase".equals(shortClassName)) { return new ExternalClassResolveResult("junit.framework.TestCase", JUnitExternalLibraryDescriptor.JUNIT3); } if (isAnnotation == ThreeState.YES && JUNIT4_ANNOTATIONS.contains(shortClassName)) { return new ExternalClassResolveResult("org.junit." + shortClassName, JUnitExternalLibraryDescriptor.JUNIT4); } return null; } @Nullable @Override public ExternalLibraryDescriptor resolvePackage(@NotNull String packageName) { if (packageName.equals("org.junit")) { return JUnitExternalLibraryDescriptor.JUNIT4; } if (packageName.equals("junit.framework")) { return JUnitExternalLibraryDescriptor.JUNIT3; } return null; } }