Reputation: 6934
I have a DTO being mapped to MongoDB using morphia. Is there any way of generating randomised test data for MongoDB (as per my DTO) without writing something in-house?
Upvotes: 1
Views: 261
Reputation: 18615
No. You'll either have to generate test data by generating mongoimport compatible files or through Morphia (preferred) with some of your own code.
Upvotes: 1