If the pseudo code below were a programming language ,how many tests are required to achieve 100% statement coverage?
1. If x=3 then
2. Display_messageX;
3. If y=2 then
4. Display_messageY;
5. Else
6. Display_messageZ;
7. Else
8. Display_messageZ;
A. 1
B. 2
C. 3
D. 4
Suppose an Application has been maintain from 4 years, we have written 5000 test cases for that. Now the functional flow has been changed for a Page. If I want to write test cases for that newly built page. How can I find what was there in that page 4 years back? How can we traced out? What is the best way to find test cases other than tracability?
what is parametrization ? How do you parametrize in qtp ?
Write a test case for yahoo
Credit card field contains four text boxes. We can validate each textbox separately with conditions but how can we write integrated testcase for all the four?
can any one give the format of writing test cases in excel sheet.
Have any idea how to prepare test cases for medical claim, Online mobile recharge.
In a log in page what will be test procedure, test scenario, test description & test steps?
Scenarios to test wireless Speaker via bluetooth
how to write test cases for online restaurant table booking system?
How to generate test cases for 'replace a string' method?
how to make test case for anolog voice logger?
consider a program module that inputs two (2) values, n and max, and computes the sum of the first n integers as long as this sum is less than max; otherwise an error should be reported. if n is negative, then it takes the absolute value. a) list the equivalence partitions, and b) list the boundary values.