Fix call to static PlatformTestCase.createModuleAt in 181

This commit is contained in:
Nikolay Krasko
2018-04-11 02:51:45 +03:00
parent b98b02b56e
commit c8fb384465
4 changed files with 34 additions and 2 deletions
@@ -0,0 +1,24 @@
/*
* Copyright 2010-2018 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license
* that can be found in the license/LICENSE.txt file.
*/
package org.jetbrains.kotlin.idea.completion.test;
import com.intellij.codeInsight.completion.CompletionTestCase;
import com.intellij.openapi.module.Module;
import com.intellij.openapi.module.ModuleType;
import com.intellij.openapi.project.Project;
import com.intellij.testFramework.PlatformTestCase;
import org.jetbrains.annotations.NotNull;
@SuppressWarnings("MethodMayBeStatic")
abstract public class CompletionTestCaseWrapper extends CompletionTestCase {
protected Module createModuleAtWrapper(String moduleName, Project project, ModuleType moduleType, String path) {
return createModuleAt(moduleName, project, moduleType, path);
}
protected Module doCreateRealModuleInWrapper(@NotNull String moduleName, @NotNull Project project, ModuleType moduleType) {
return doCreateRealModuleIn(moduleName, project, moduleType);
}
}
@@ -22,7 +22,7 @@ import com.intellij.openapi.vfs.newvfs.impl.VfsRootAccess;
import com.intellij.util.ArrayUtil;
import org.jetbrains.kotlin.test.KotlinTestUtils;
abstract public class KotlinCompletionTestCase extends CompletionTestCase {
abstract public class KotlinCompletionTestCase extends CompletionTestCaseWrapper {
@Override
protected void setUp() throws Exception {
super.setUp();