Minor: rename base trace evaluation test case
This commit is contained in:
committed by
Yan Zhulanow
parent
07cc21200a
commit
4552504315
+2
-2
@@ -21,7 +21,7 @@ import java.nio.file.Paths
|
|||||||
/**
|
/**
|
||||||
* @author Vitaliy.Bibaev
|
* @author Vitaliy.Bibaev
|
||||||
*/
|
*/
|
||||||
abstract class KotlinEvaluationTestCase : TraceExecutionTestCase() {
|
abstract class KotlinTraceEvaluationTestCase : TraceExecutionTestCase() {
|
||||||
private companion object {
|
private companion object {
|
||||||
val STDLIB_JAR_NAME = "kotlin-stdlib.jar"
|
val STDLIB_JAR_NAME = "kotlin-stdlib.jar"
|
||||||
}
|
}
|
||||||
@@ -49,7 +49,7 @@ abstract class KotlinEvaluationTestCase : TraceExecutionTestCase() {
|
|||||||
return KotlinOutputChecker(testAppPath, appOutputPath)
|
return KotlinOutputChecker(testAppPath, appOutputPath)
|
||||||
}
|
}
|
||||||
|
|
||||||
override fun createLocalProcess(className: String?) {
|
override fun createLocalProcess(className: String) {
|
||||||
super.createLocalProcess(className + "Kt")
|
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.
|
// 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
|
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.kotlin.lib.JavaStandardLibrarySupportProvider
|
||||||
import com.intellij.debugger.streams.lib.LibrarySupportProvider
|
import com.intellij.debugger.streams.lib.LibrarySupportProvider
|
||||||
|
|
||||||
@@ -9,7 +9,7 @@ import com.intellij.debugger.streams.lib.LibrarySupportProvider
|
|||||||
/**
|
/**
|
||||||
* @author Vitaliy.Bibaev
|
* @author Vitaliy.Bibaev
|
||||||
*/
|
*/
|
||||||
class JavaStreamTest : KotlinEvaluationTestCase() {
|
class JavaStreamTest : KotlinTraceEvaluationTestCase() {
|
||||||
override val appName: String = "java"
|
override val appName: String = "java"
|
||||||
override val librarySupport: LibrarySupportProvider = JavaStandardLibrarySupportProvider()
|
override val librarySupport: LibrarySupportProvider = JavaStandardLibrarySupportProvider()
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user