moving tests to CE

This commit is contained in:
Dmitry Jemerov
2009-09-25 21:07:37 +04:00
parent 8a4939e31f
commit 19e9b897aa
11 changed files with 6 additions and 0 deletions
@@ -0,0 +1,21 @@
import org.jetbrains.annotations.NotNull;
class B {
@NotNull
B b;
public B getB() {
return b;
}
public void setB(B b) {
this.b = b;
}
@NotNull
private String bug = "true";
public boolean getBug() {
return Boolean.valueOf(bug);
}
}