Add more test cases

This commit is contained in:
Tamas Vajk
2025-03-07 10:33:20 +01:00
parent 614bee9e20
commit 4bf26afca0
2 changed files with 13 additions and 0 deletions

View File

@@ -1 +1,3 @@
| Test.java:13:15:13:16 | f2 | Empty method found. |
| Test.java:27:17:27:17 | f | Empty method found. |
| Test.java:32:18:32:23 | method | Empty method found. |

View File

@@ -21,4 +21,15 @@ public class Test {
public abstract void f();
}
public class Derived extends TestInner {
@Override
public void f() { } // $ Alert
}
public interface TestInterface {
default void method() { } // $ Alert
}
}