Added test for soutv.
This commit is contained in:
@@ -0,0 +1,5 @@
|
||||
fun main(args : Array<String>) {
|
||||
val x = 5
|
||||
val y = "str"
|
||||
println("y = ${y}")<caret>
|
||||
}
|
||||
@@ -0,0 +1,5 @@
|
||||
fun main(args : Array<String>) {
|
||||
val x = 5
|
||||
val y = "str"
|
||||
<caret>
|
||||
}
|
||||
@@ -38,6 +38,16 @@ public class LiveTemplatesTest extends LightCodeInsightFixtureTestCase {
|
||||
paremeterless();
|
||||
}
|
||||
|
||||
public void testSoutv() {
|
||||
start();
|
||||
|
||||
assertStringItems("args", "x", "y");
|
||||
type("y");
|
||||
nextTab();
|
||||
|
||||
checkAfter();
|
||||
}
|
||||
|
||||
public void testIter() {
|
||||
start();
|
||||
|
||||
|
||||
Reference in New Issue
Block a user