Specify type explicitly: Add tests

This commit is contained in:
Alexey Sedunov
2014-02-04 12:50:16 +04:00
parent c251e2dfcb
commit 2ea1a89e4c
3 changed files with 18 additions and 0 deletions
@@ -0,0 +1,7 @@
// "Specify type explicitly" "false"
class A {
public fun <caret>foo() {
return ""
}
}
@@ -0,0 +1,7 @@
// "Specify type explicitly" "false"
class A {
public fun <caret>foo() {
return ""
}
}
@@ -66,6 +66,10 @@ public class SpecifyTypeExplicitlyTest extends AbstractQuickFixTest {
doTest();
}
public void testPublicMember() {
doTest();
}
@NotNull
@Override
protected String getTestDataPath() {