Minor: rename base trace evaluation test case

This commit is contained in:
Vitaliy.Bibaev
2017-10-19 15:09:16 +03:00
committed by Yan Zhulanow
parent 07cc21200a
commit 4552504315
2 changed files with 4 additions and 4 deletions
@@ -21,7 +21,7 @@ import java.nio.file.Paths
/**
* @author Vitaliy.Bibaev
*/
abstract class KotlinEvaluationTestCase : TraceExecutionTestCase() {
abstract class KotlinTraceEvaluationTestCase : TraceExecutionTestCase() {
private companion object {
val STDLIB_JAR_NAME = "kotlin-stdlib.jar"
}
@@ -49,7 +49,7 @@ abstract class KotlinEvaluationTestCase : TraceExecutionTestCase() {
return KotlinOutputChecker(testAppPath, appOutputPath)
}
override fun createLocalProcess(className: String?) {
override fun createLocalProcess(className: String) {
super.createLocalProcess(className + "Kt")
}
@@ -1,7 +1,7 @@
// Copyright 2000-2017 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file.
package com.intellij.debugger.streams.kotlin.exec.java
import com.intellij.debugger.streams.kotlin.exec.KotlinEvaluationTestCase
import com.intellij.debugger.streams.kotlin.exec.KotlinTraceEvaluationTestCase
import com.intellij.debugger.streams.kotlin.lib.JavaStandardLibrarySupportProvider
import com.intellij.debugger.streams.lib.LibrarySupportProvider
@@ -9,7 +9,7 @@ import com.intellij.debugger.streams.lib.LibrarySupportProvider
/**
* @author Vitaliy.Bibaev
*/
class JavaStreamTest : KotlinEvaluationTestCase() {
class JavaStreamTest : KotlinTraceEvaluationTestCase() {
override val appName: String = "java"
override val librarySupport: LibrarySupportProvider = JavaStandardLibrarySupportProvider()