Added test for soutv.

This commit is contained in:
Evgeny Gerashchenko
2012-02-13 21:11:13 +04:00
parent 98db9c741f
commit 1060e44137
3 changed files with 20 additions and 0 deletions
+5
View File
@@ -0,0 +1,5 @@
fun main(args : Array<String>) {
val x = 5
val y = "str"
println("y = ${y}")<caret>
}
+5
View File
@@ -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();