From 8da87a0a7c542e2f6dc77569dd54d71cb36d1c9c Mon Sep 17 00:00:00 2001 From: Anna Kozlova Date: Tue, 7 Aug 2012 11:45:55 +0200 Subject: [PATCH] delete duplicate --- .../codeInsight/daemon/LambdaParamsTest.java | 38 ------------------- 1 file changed, 38 deletions(-) delete mode 100644 java/java-tests/testSrc/com/intellij/codeInsight/daemon/LambdaParamsTest.java diff --git a/java/java-tests/testSrc/com/intellij/codeInsight/daemon/LambdaParamsTest.java b/java/java-tests/testSrc/com/intellij/codeInsight/daemon/LambdaParamsTest.java deleted file mode 100644 index 6eba6532c120..000000000000 --- a/java/java-tests/testSrc/com/intellij/codeInsight/daemon/LambdaParamsTest.java +++ /dev/null @@ -1,38 +0,0 @@ -/* - * Copyright 2000-2012 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.codeInsight.daemon; - -import org.jetbrains.annotations.NonNls; - -public class LambdaParamsTest extends LightDaemonAnalyzerTestCase { - @NonNls static final String BASE_PATH = "/codeInsight/daemonCodeAnalyzer/lambda/params"; - - public void testFormalParams() throws Exception { - doTest(); - } - - public void testInferredParams() throws Exception { - doTest(); - } - - public void testMethodApplicability() throws Exception { - doTest(); - } - - private void doTest() throws Exception { - doTest(BASE_PATH + "/" + getTestName(false) + ".java", false, false); - } -}