diff --git a/idea/tests/org/jetbrains/jet/android/AndroidPropertiesCompletionBasicTest.java b/idea/tests/org/jetbrains/jet/android/AndroidPropertiesCompletionBasicTest.java deleted file mode 100644 index 55583afab46..00000000000 --- a/idea/tests/org/jetbrains/jet/android/AndroidPropertiesCompletionBasicTest.java +++ /dev/null @@ -1,39 +0,0 @@ -/* - * Copyright 2010-2014 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 org.jetbrains.jet.android; - -import org.jetbrains.jet.completion.AbstractJvmBasicCompletionTest; -import org.jetbrains.jet.plugin.PluginTestCaseBase; -import org.jetbrains.jet.plugin.android.TestConst; -import org.jetbrains.jet.test.TestMetadata; - -@TestMetadata("idea/testData/android/completion/") -public class AndroidPropertiesCompletionBasicTest extends AbstractJvmBasicCompletionTest { - @Override - protected String getTestDataPath() { - return PluginTestCaseBase.getTestDataPathBase() + "/android/completion/" + getTestName(false) + "/"; - } - - @TestMetadata("PropertiesSimple.kt") - public void testPropertiesSimple() throws Exception { - getProject().putUserData(TestConst.TESTDATA_PATH, getTestDataPath()); - myFixture.addFileToProject("Activity.kt", "package android.app\ntrait Activity"); - myFixture.addFileToProject("View.kt", "package android.view\ntrait View"); - myFixture.addFileToProject("Button.kt", "package android.widget\ntrait Button"); - doTest("idea/testData/android/completion/PropertiesSimple/PropertiesSimple.kt"); - } -}