Search
 
SCRIPT & CODE EXAMPLE
 

TYPESCRIPT

where do you get your test data

When=> sprint planning meeting
	Who=> Mostly I get test data from PO
    However in some instances, especially in 
    negative test scenario I may need to 
    generate test data.
    I use java faker to generate data
	How => Faker faker=new Faker();
    or String manupilation(substring concatination etc.)
	I store it  at SharePoint. Saved in my project
    in xls type under data package 

    For API Part: I use "https://www.mockaroo.com/" ==>
    generates multiple format (CSV, JSON, XML, etc)
Comment

what is test data

Test data is the data that is used by 
the testers to run the test cases. 
Whilst running the test cases, 
testers need to enter some input data. 
To do so, testers prepare test data. 
It can be prepared manually and also by using tools.

For example, To test a basic login 
functionality having a user id, password
fields. We need to enter some data
in the user id and password fields.
So we need to collect some test data.
Comment

test data

Test data is the data that is used by 
the testers to run the test cases. 
Whilst running the test cases, 
testers need to enter some input data. 
To do so, testers prepare test data. 
It can be prepared manually and also by using tools.

For example, To test a basic login 
functionality having a user id, password
fields. We need to enter some data
in the user id and password fields.
So we need to collect some test data.
Comment

PREVIOUS NEXT
Code Example
Typescript :: draw image html canvas 
Typescript :: google chrome keyboard shortcuts windows 
Typescript :: learn typescript 
Typescript :: basic variable types in typescript 
Typescript :: typescript check if object is of type 
Typescript :: calling contract in ether.js 
Typescript :: serverless.ps1 cannot be loaded because running scripts is disabled on this system. 
Typescript :: get one property from list of objects linq 
Typescript :: cannot redeclare block-scoped variable typescript 
Typescript :: loop two lists python 
Typescript :: array containing objects with matching elements 
Typescript :: typescript array of string array 
Typescript :: deleting conflicting outputs 
Typescript :: data binding lwc multiple 
Typescript :: push in typescript 
Typescript :: c++ sort vector of objects by property 
Typescript :: typescript playground 
Typescript :: How to pass optional parameters while omitting some other optional parameters? 
Typescript :: Two sets of parentheses after function call 
Typescript :: java stack remove elements which equals the top element 
Typescript :: how to compare two date in typescript 
Typescript :: how-do-i-navigate-to-a-parent-route-from-a-child-route 
Typescript :: Error: Maximum update depth exceeded. This can happen when a component repeatedly calls setState inside componentWillUpdate or componentDidUpdate. React limits the number of nested updates to prevent infinite loops. 
Typescript :: nuxt "AxiosRequestConfig" 
Typescript :: react typescript append to array 
Typescript :: ERROR in The Angular Compiler requires TypeScript =3.4.0 and <3.6.0 but 4.1.5 was found instead. 
Typescript :: testing in different environments 
Typescript :: how to permit only a few values in dbms 
Typescript :: typescript public function 
Typescript :: avoid hitting multiple same api hits angular 
ADD CONTENT
Topic
Content
Source link
Name
2+7 =