how do you generate test data

Solutions on MaxInterview for how do you generate test data by the best coders in the world

showing results for - "how do you generate test data"
Gabriele
03 Feb 2019
1When=> sprint planning meeting
2	Who=> Mostly I get test data from PO
3    However in some instances, especially in 
4    negative test scenario I may need to 
5    generate test data.
6    I use java faker to generate data
7	How => Faker faker=new Faker();
8    or String manupilation(substring concatination etc.)
9	I store it  at SharePoint. Saved in my project
10    in xls type under data package 
11
12    For API Part: I use "https://www.mockaroo.com/" ==>
13    generates multiple format (CSV, JSON, XML, etc)