Optimize Imports tests: Switch to generated approach

Move test and rename test data
Delete unused testdata
Rewrite OptimizeImportOnFlyTest
This commit is contained in:
Pavel V. Talanov
2014-03-05 15:59:50 +04:00
parent 3155a66319
commit c87cc0dde1
54 changed files with 232 additions and 241 deletions
@@ -0,0 +1,20 @@
/**
Comment 1
*/
package sometest
import java.io as JavaIO
import java.text.Annotation as TextAnnotation
import java.util.ArrayList
import java.util.HashSet
/**
Comment 2
*/
class Action {
fun test(hash : HashSet<Int>) {
val some : TextAnnotation? = null
val test : ArrayList<Int>? = null
JavaIO.File(StringBuilder().append("Hello").toString())
}
}