You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fuzzing can create objects if they have public constructors (include default implicit one). But package-private constructors can be also called when test runs from the same package (and module). Currently, fuzzing doesn't generate any models in this situation.
Description
Fuzzing can create objects if they have public constructors (include default implicit one). But package-private constructors can be also called when test runs from the same package (and module). Currently, fuzzing doesn't generate any models in this situation.
To Reproduce
Generate test for a method
t
:Expected behavior
There's a generated test without reflection
Actual behavior
Currently, fuzzing creates a test using reflection.
The text was updated successfully, but these errors were encountered: