what is test data

Solutions on MaxInterview for what is test data by the best coders in the world

showing results for - "what is test data"
Neila
02 Sep 2020
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)
Tommaso
11 Apr 2020
1Test data is the data that is used by 
2the testers to run the test cases. 
3Whilst running the test cases, 
4testers need to enter some input data. 
5To do so, testers prepare test data. 
6It can be prepared manually and also by using tools.
7
8For example, To test a basic login 
9functionality having a user id, password
10fields. We need to enter some data
11in the user id and password fields.
12So we need to collect some test data.
Luca
05 Oct 2016
1Test data is the data that is used by 
2the testers to run the test cases. 
3Whilst running the test cases, 
4testers need to enter some input data. 
5To do so, testers prepare test data. 
6It can be prepared manually and also by using tools.
7
8For example, To test a basic login 
9functionality having a user id, password
10fields. We need to enter some data
11in the user id and password fields.
12So we need to collect some test data.
13