I used to use Easy-Random to generate JUnit5 test data, however because it does not seem to be developed anymore, doesn't support Java records and in general seems to be less flexibility than Instancio, I've decided to migrate. Instancio, out of the box, provides a lot of nice features enabling quicker testing (easier parametrized tests, taking into consideration Javax etc.), however there is one drawback.
The objects returned by our persistence layer are auto-generated implementations of some record interface which look like:
interface SomeRecord {
getUid();
}
Easy-Random was able to find the implementation and generate a random record.
I cannot find any information on how to resolve this or a workaround in Instancio's docs or anywhere else. Has anyone been able to do something similar?
For a one-off case, the easiest option is to specify the implementation manually, e.g.
However, I assume that you want implementations to be found automatically. If so, there are a couple of options.
TypeResolver
(see InstancioServiceProvider documentation):The mapping can be specified manually, or automated by scanning the classpath using a library, such as ClassGraph.
Settings
. This can also be specified manually, or automated, for example: https://github.com/dafriedmann/instancio-jandex-subtype-mapping