Switch PC onStart “outlook”IF outlook appears THENSend an emailClose outlooka) 1 test for statement coverage, 1 for branch coverageb) 1 test for statement coverage, 2 for branch coveragec)
Latest Answer: Branch Coverage : 3 Statement Coverage : 2 ...
How many test cases are needed to have 100% path coverage and decision coverage in the following code.
if (conditionA){ c=c+1}if(conditionB)d=d-1elsee++consider condition A and condition B are independent.
Latest Answer: If these conditions A & B are independent. Assuming as these are not
interlinked (as c, d, and e are not affecting each other) you can simply write 4
tests as below:
1. Condition A true value
2. Condition A false value
3. Condition B true value
4. ...
Module- SAP HR Position infotype Obsolete updation (T.Code: PO13)I am not able to upload the data through LSMW. It is getting recorded but while processing system does not skip to this infotype, which
I am new to White box testing and would like to know how i could learn to write white box code to give input to the code and get the output from the code to test the functions written by developers. Is
What are Coverage Techniques? type of coverage? Please explain me with example.Thanks in advance.
Latest Answer: the main coverage tecniques used in the software industry are white box testing and black box testing. in the black box testing we don't need to bother about code just we have to know about the specifications. EX: in calculator we don't need to ...
Write one example that you have not find the bug in black box testing but you will find in white box testing?
Latest Answer: API testing is to make sure that the basic units of the software application function perfectly well. Reason why we perform API testing right from the initial stages of the product cycle to the final phase, ensuring that the product release in the ...
Latest Answer: White box testing is a type of testing used basically for checking the code of an application, where as equivalence partitioning is a strategy used for both whitebox and blackbox testing. In equivalance partitioning we will have to come up with multiple ...
View page [1] 2 3 4 5 Next >>

Go Top