moving tests to CE

This commit is contained in:
Dmitry Jemerov
2009-09-25 20:51:46 +04:00
parent 96ed6ab4dc
commit b7929673b6
19 changed files with 5 additions and 0 deletions
@@ -0,0 +1,10 @@
<?xml version="1.0" encoding="UTF-8"?>
<problems>
<problem>
<file>Base.java</file>
<line>2</line>
<description>empty</description>
<entry_point TYPE="method" FQNAME="Base void foo()" />
</problem>
</problems>
@@ -0,0 +1,3 @@
public class Base {
public void foo() {}
}
@@ -0,0 +1,5 @@
public class Derived extends Base {
public void foo() {
super.foo();
}
}