Reputation: 1511
i've developed a online portal with php/mysql. Now i need to test it but i need to create mock user profiles inorder to check the full functionality and optimize mysql query.
I need about 1000 user profiles. it would take alot of time to do manually to fill name, dob, address, phone number etc. is there any way to create mock up data easily. or is there any application that would create these data for me.
Upvotes: 0
Views: 453
Reputation:
Have a look at Benerator.
It is a very powerful tool to create test (dummy) data for a database.
It does have a learning curve though.
Upvotes: 0
Reputation: 12750
Create an array of one item data and iterate over user creation process
Upvotes: 0