Unit Test Tooling: Support Go to Test/Create Test actions for top-level declarations

#KT-10133 Fixed
This commit is contained in:
Alexey Sedunov
2015-12-01 22:22:35 +03:00
parent ecac0f177b
commit 8fcda32287
18 changed files with 165 additions and 28 deletions
@@ -1,4 +1,5 @@
// "Delete redundant extension property" "false"
// ACTION: Create test
import java.io.File
var File.<caret>name: String
@@ -1,4 +1,5 @@
// "Delete redundant extension property" "false"
// ACTION: Create test
var Thread.<caret>priority: Int
get() = getPriority() + 1
@@ -1,5 +1,6 @@
// "Delete redundant extension property" "false"
// ACTION: Convert property to function
// ACTION: Create test
import java.io.File
public val File.<caret>parent: File?
@@ -1,4 +1,5 @@
// "Delete redundant extension property" "false"
// ACTION: Create test
var Thread.<caret>priority: Int
get() = this.getPriority()