moving tests to CE

This commit is contained in:
Dmitry Jemerov
2009-09-25 21:30:27 +04:00
parent 4c0f33ef3b
commit 6b7a2dc8c4
9 changed files with 6 additions and 0 deletions
@@ -0,0 +1,3 @@
<?xml version="1.0" encoding="UTF-8"?>
<problems></problems>
@@ -0,0 +1,5 @@
public class Test {
public static void main(String[] args){
}
}
@@ -0,0 +1,3 @@
<?xml version="1.0" encoding="UTF-8"?>
<problems></problems>
@@ -0,0 +1,9 @@
public class Test {
public Runnable foo(final int i) {
return new Runnable() {
private int myInt = i;
public void run(){
}
}
}
}
@@ -0,0 +1,9 @@
<?xml version="1.0" encoding="UTF-8"?>
<problems>
<problem>
<file>Test.java</file>
<line>2</line>
<description>b</description>
</problem>
</problems>
@@ -0,0 +1,5 @@
public class Test {
public void foo(boolean b) {
}
}
@@ -0,0 +1,3 @@
<?xml version="1.0" encoding="UTF-8"?>
<problems></problems>
@@ -0,0 +1,5 @@
public class Test {
public void foo(boolean b) {
boolean f = b;
}
}