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,32 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<problems>
|
||||
<problem>
|
||||
<file>Test.java</file>
|
||||
<line>6</line>
|
||||
<entry_point TYPE="method" FQNAME="Test$1 void a()"/>
|
||||
<problem_class>Empty method</problem_class>
|
||||
<description>The method is empty</description>
|
||||
</problem>
|
||||
<problem>
|
||||
<file>Test.java</file>
|
||||
<line>13</line>
|
||||
<entry_point TYPE="method" FQNAME="Test$5A$1 void aa()"/>
|
||||
<problem_class>Empty method</problem_class>
|
||||
<description>The method is empty</description>
|
||||
</problem>
|
||||
<problem>
|
||||
<file>Test.java</file>
|
||||
<line>20</line>
|
||||
<entry_point TYPE="method" FQNAME="Test$5A$3A1$1 void aa1()"/>
|
||||
<problem_class>Empty method</problem_class>
|
||||
<description>The method is empty</description>
|
||||
</problem>
|
||||
<problem>
|
||||
<file>Test.java</file>
|
||||
<line>32</line>
|
||||
<entry_point TYPE="method" FQNAME="Test.B$1 void bb()"/>
|
||||
<problem_class>Empty method</problem_class>
|
||||
<description>The method is empty</description>
|
||||
</problem>
|
||||
</problems>
|
||||
|
||||
@@ -0,0 +1,36 @@
|
||||
public class Test {
|
||||
public void foo() {
|
||||
Runnable r = new Runnable() {
|
||||
public void run(){
|
||||
}
|
||||
private void a(){}
|
||||
}
|
||||
class A {
|
||||
void a(){
|
||||
Runnable a = new Runnable() {
|
||||
public void run(){
|
||||
}
|
||||
private void aa(){}
|
||||
}
|
||||
class A1 {
|
||||
void a1(){
|
||||
Runnable a1 = new Runnable() {
|
||||
public void run(){
|
||||
}
|
||||
private void aa1(){}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
class B {
|
||||
void b() {
|
||||
Runnable b = new Runnable() {
|
||||
public void run(){
|
||||
}
|
||||
private void bb(){}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user