diff --git a/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/encapsulateField/beforeFinal.java b/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/encapsulateField/beforeFinal.java deleted file mode 100644 index e082b01cf8fb..000000000000 --- a/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/encapsulateField/beforeFinal.java +++ /dev/null @@ -1,13 +0,0 @@ -// "Encapsulate field" "false" - -class A { - public final boolean m_bool; -} - -public class B { - void method() { - A a = new A(); - - a.m_bool = true; - } -} diff --git a/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/encapsulateField/beforePrivate.java b/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/encapsulateField/beforePrivate.java deleted file mode 100644 index 061d152e95e6..000000000000 --- a/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/encapsulateField/beforePrivate.java +++ /dev/null @@ -1,13 +0,0 @@ -// "Encapsulate field" "false" - -class A { - private boolean m_bool; -} - -public class B { - void method() { - A a = new A(); - - a.m_bool = true; - } -} diff --git a/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/encapsulateField/beforeThisClass.java b/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/encapsulateField/beforeThisClass.java deleted file mode 100644 index 4721b752ed5e..000000000000 --- a/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/encapsulateField/beforeThisClass.java +++ /dev/null @@ -1,9 +0,0 @@ -// "Encapsulate field" "false" - -class A { - public final boolean m_bool; - - void method() { - m_bool = true; - } -} diff --git a/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/encapsulateField/beforeThisClassQualified.java b/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/encapsulateField/beforeThisClassQualified.java deleted file mode 100644 index a4aa102c4a85..000000000000 --- a/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/encapsulateField/beforeThisClassQualified.java +++ /dev/null @@ -1,9 +0,0 @@ -// "Encapsulate field" "false" - -class A { - public final boolean m_bool; - - void method() { - this.m_bool = true; - } -} diff --git a/java/java-tests/testSrc/com/intellij/java/codeInsight/intention/EncapsulateFieldTest.java b/java/java-tests/testSrc/com/intellij/java/codeInsight/intention/EncapsulateFieldTest.java deleted file mode 100644 index 2bb776012d45..000000000000 --- a/java/java-tests/testSrc/com/intellij/java/codeInsight/intention/EncapsulateFieldTest.java +++ /dev/null @@ -1,28 +0,0 @@ -/* - * Copyright 2000-2017 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.java.codeInsight.intention; - -import com.intellij.codeInsight.daemon.LightIntentionActionTestCase; - -/** - * @author Danila Ponomarenko - */ -public class EncapsulateFieldTest extends LightIntentionActionTestCase { - @Override - protected String getBasePath() { - return "/codeInsight/daemonCodeAnalyzer/quickFix/encapsulateField"; - } -}