Are there any tools or libraries that can be used to generate test data using JPA or entity beans? I believe this will be very helpful for unit testing where we can have an in memory database with data dynamically generated just when we start our testing. So, there will be no communication with actual DB servers and not any waste of time.
I was only able to find JPAMock. But it is still under development. It would be nice if someone could provide a good pointer.
Thanks a lot.
I use DBUnit in conjunction with H2 database and untils & Spring. Works nicely:
The data is set in an XML file:
In Spring test context you define your datasource as such:
As dialect you use:
org.hibernate.dialect.H2Dialect
Finally a unitils.properties in your classpath like:
UPDATE