Change the way of runtime configuration in JsePsiUnifierTest

This commit is contained in:
Nikolay Krasko
2014-12-16 13:14:15 +03:00
parent 37cea8a720
commit 8f6f404f14
48 changed files with 79 additions and 110 deletions
@@ -1,4 +1,3 @@
// WITH_RUNTIME
fun foo(a: Int, b: Int) {
var t = a
<selection>do {
@@ -1,4 +1,3 @@
// WITH_RUNTIME
fun foo(a: Int, b: Int) {
<selection>for (i in a - b..a + b) {
println(i*i)
@@ -1,4 +1,3 @@
// WITH_RUNTIME
fun foo(a: Int, b: Int) {
if ((a) + b > 0) {
println(a*b)
@@ -1,4 +1,3 @@
// WITH_RUNTIME
fun foo(a: Int, b: Int) {
<selection>if ((a) + b > 0) {
println(a*(b))
@@ -1,4 +1,3 @@
// WITH_RUNTIME
fun foo(a: Int, b: Int) {
<selection>when((a)) {
1 -> println(b)
@@ -1,4 +1,3 @@
// WITH_RUNTIME
fun foo(a: Int, b: Int) {
<selection>when {
(a == 1) -> println(b)
@@ -1,4 +1,3 @@
// WITH_RUNTIME
fun foo(a: Int, b: Int) {
var t = a
<selection>while (t != (a + b)) {