Add support for eclipse feature tests

This commit is contained in:
Rawi01
2022-05-20 00:08:05 +02:00
parent 59717d0c95
commit d2d97539d2
40 changed files with 1263 additions and 2 deletions
@@ -0,0 +1,12 @@
package pkg;
import lombok.Getter;
import lombok.Setter;
@Getter
@Setter
public class B {
private A a = new A();
private String string = a.getString();
private int integer = a.getInteger();
}