Simplified CodeTransformationTest. Only one doTest method remains, intention class is moved to test data. Merged other intention tests (SpecifyTypeExplicitlyTest, ConvertToBlock/ExpressionBodyTest) into this one.

This commit is contained in:
Evgeny Gerashchenko
2014-07-07 21:09:31 +04:00
parent b1003fc034
commit fda7aeecfb
169 changed files with 4764 additions and 4969 deletions
@@ -0,0 +1,9 @@
// IS_APPLICABLE: false
fun foo(handler: () -> Unit) { }
fun bar() {
foo { <caret>zoo() }
}
fun zoo(){}