Answers for "how do test case"

1

what does a test case consists of

It is documentation which describes step by step how to perform testing. 

It includes: 
	- test case ID (TC ID)
	- test case name (TC Name)
	- pre-condition
	- step definitions
	- test data
	- expected/actual result
	- pass/fail

Tester creates test cases.
Posted by: Guest on December-05-2020
2

how good test case should be

A good test case should be:

	- small, isolated and atomic 
	- easy to understand
	- executed as fast as possible
	- independent with each other
	- describe its expected result
	- avoided from repetition
	- written with end user's perspective
Posted by: Guest on January-14-2021

Code answers related to "TypeScript"

Browse Popular Code Answers by Language