Interview Question : What steps are needed to develop and run software tests?
Answer : A test case describes an input, action, or event and an
expected response, to determine if a feature of a software
application is working correctly. A test case
may contain particulars such as test case identifier,
test case name, objective, test conditions/setup, input data
requirements, steps, and expected results. The level of detail
may vary significantly depending on the organization and project
context.
Note that the process of developing test cases can help find
problems in the requirements or design of an application,
since it requires completely thinking through the operation
of the application. For this reason, it's useful to prepare
test cases early in the development cycle if possible.
Interview Question Category : Testing - General
|