mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 10:03:11 +07:00
moving tests to CE
This commit is contained in:
@@ -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();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user