2 * Copyright 2000-2009 JetBrains s.r.o.
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
8 * http://www.apache.org/licenses/LICENSE-2.0
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
16 package com.intellij.testIntegration;
18 import com.intellij.openapi.diagnostic.Logger;
19 import com.intellij.openapi.editor.Editor;
20 import com.intellij.openapi.project.Project;
21 import com.intellij.psi.PsiElement;
22 import com.intellij.psi.PsiFile;
23 import com.intellij.testIntegration.createTest.CreateTestAction;
24 import com.intellij.util.IncorrectOperationException;
26 public class JavaTestCreator implements TestCreator {
27 private static final Logger LOG = Logger.getInstance("com.intellij.testIntegration.JavaTestCreator");
31 public boolean isAvailable(Project project, Editor editor, PsiFile file) {
32 CreateTestAction action = new CreateTestAction();
33 PsiElement element = file.findElementAt(editor.getCaretModel().getOffset());
35 return action.isAvailableForElement(element);
38 public void createTest(Project project, Editor editor, PsiFile file) {
40 CreateTestAction action = new CreateTestAction();
41 PsiElement element = file.findElementAt(editor.getCaretModel().getOffset());
42 if (action.isAvailableForElement(element)) {
43 action.invoke(project, editor, file.getContainingFile());
46 catch (IncorrectOperationException e) {