more java tests moved to community

This commit is contained in:
Alexey Kudravtsev
2010-06-25 12:46:40 +04:00
parent 735a9d17a8
commit 2718da9fc7
1139 changed files with 14287 additions and 0 deletions
@@ -0,0 +1,7 @@
// "Add Method Body" "true"
class a {
void f() {
<selection>//To change body of created methods use File | Settings | File Templates.</selection><caret>
}
}
@@ -0,0 +1,7 @@
// "Add Method Body" "true"
class a {
String f() {
<selection>return null; //To change body of created methods use File | Settings | File Templates.</selection><caret>
}
}
@@ -0,0 +1,7 @@
// "Add Method Body" "true"
class a {
a() {
<selection>//To change body of created methods use File | Settings | File Templates.</selection><caret>
}
}
@@ -0,0 +1,7 @@
// "Add Method Body" "true"
class a {
String f() {
<selection>return null; //To change body of created methods use File | Settings | File Templates.</selection><caret>
}
}
@@ -0,0 +1,5 @@
// "Add Method Body" "true"
class a {
<caret>void f();
}
@@ -0,0 +1,5 @@
// "Add Method Body" "true"
class a {
<caret>String f();
}
@@ -0,0 +1,5 @@
// "Add Method Body" "true"
class a {
<caret>a();
}
@@ -0,0 +1,5 @@
// "Add Method Body" "true"
class a {
<caret>abstract String f();
}
@@ -0,0 +1,5 @@
// "Add Method Body" "false"
interface a {
<caret>String f();
}