assertj-assertions-generator icon indicating copy to clipboard operation
assertj-assertions-generator copied to clipboard

Blank parameter name in case of get() with @GenerateAssertion

Open Berlizov opened this issue 1 year ago • 0 comments

public class Foo {
    @GenerateAssertion
    public String get(){
        return "foo";
    }
}

The code generated Assert class without parameter name

public S has(String ) { // blank parameter name
...
}

Berlizov avatar May 12 '24 13:05 Berlizov