From 4d75355cf226b9da515b94b81f485b6226796419 Mon Sep 17 00:00:00 2001 From: "Pavel V. Talanov" Date: Tue, 12 Apr 2016 18:30:06 +0300 Subject: [PATCH] Minor: Rename KotlinReplTest --- .../KotlinReplTest.kt => repl/IdeReplExecutionTest.kt} | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) rename idea/tests/org/jetbrains/kotlin/idea/{console/KotlinReplTest.kt => repl/IdeReplExecutionTest.kt} (95%) diff --git a/idea/tests/org/jetbrains/kotlin/idea/console/KotlinReplTest.kt b/idea/tests/org/jetbrains/kotlin/idea/repl/IdeReplExecutionTest.kt similarity index 95% rename from idea/tests/org/jetbrains/kotlin/idea/console/KotlinReplTest.kt rename to idea/tests/org/jetbrains/kotlin/idea/repl/IdeReplExecutionTest.kt index 967be8a9ef7..832c1bcb275 100644 --- a/idea/tests/org/jetbrains/kotlin/idea/console/KotlinReplTest.kt +++ b/idea/tests/org/jetbrains/kotlin/idea/repl/IdeReplExecutionTest.kt @@ -1,5 +1,5 @@ /* - * Copyright 2010-2015 JetBrains s.r.o. + * Copyright 2010-2016 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. @@ -14,7 +14,7 @@ * limitations under the License. */ -package org.jetbrains.kotlin.idea.console +package org.jetbrains.kotlin.idea.repl import com.intellij.execution.console.LanguageConsoleImpl import com.intellij.testFramework.PlatformTestCase @@ -22,14 +22,12 @@ import com.intellij.util.ui.UIUtil import org.jetbrains.kotlin.console.KotlinConsoleKeeper import org.jetbrains.kotlin.console.KotlinConsoleRunner import org.jetbrains.kotlin.idea.util.application.runWriteAction -import org.junit.FixMethodOrder import org.junit.Test -import org.junit.runners.MethodSorters import kotlin.properties.Delegates import kotlin.test.assertFalse import kotlin.test.assertTrue -@FixMethodOrder(MethodSorters.JVM) class KotlinReplTest : PlatformTestCase() { +class IdeReplExecutionTest : PlatformTestCase() { private var consoleRunner: KotlinConsoleRunner by Delegates.notNull() private var commandsSent = 0