We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
var
When the method Fixture.from(clazz).gimme(label) is called you have to implicit declare the type of your object.
Fixture.from(clazz).gimme(label)
Doesnt' work:
var client = Fixture.from(Client.class).gimme("valid");
Work:
Client client = Fixture.from(Client.class).gimme("valid");