Explain the difference between decision coverage and
condition coverage ? If possible provide few examples.
Answer Posted / mfsi_krushnas
Decision Coverage
-----------------
1.Generally it says The test inputs to cover all
decisions(for ex:IF) will be in such a way that,those test
inputs can be able to make that decision block both true and
false.
for ex:
if(a>b)
print a;
endif
if (b>c)
print c;
else
print b;
endif
so here we should make test inputs in such a way that it
should able to make first if true and false although there
is no else condition.same for the second if block.
condition coverage
------------------
Here condition refers to the all possible conditions
existing in the program that we can traverse.
for ex:
if((a>b) && (b>c))
here inside the decision block there are conditions which we
should traverse.
| Is This Answer Correct ? | 12 Yes | 0 No |
Post New Answer View All Answers
Why performance testing is performed? What are tools of performance testing?
is it possible to do performance testing in stand alone application..how wil u do that ???????
Can you explain random/monkey testing?
What is the difference between authentication and authorization in web testing?
what is fusion testing and impact analysis???
Why you are selected software testing as career ?
How much the bug is affecting the functionality of the application?
Being an Manual tester, what will be the role or activity in test plan ?
About Testing
Explain branch coverage and decision coverage.
where can i learn domain knowledge? how cab i gain domain knowledge? what types of Questions can be asked in domain(BFSI)? PLZ REPLY ME
I am new to testing, I need information about TSYS any website or if you have information please mail it to me. this is for online credit applications project.My mail id is keerthanakoluvu@yahoo.com. Thanks for your help.
Test cases on send/ receive button of Microsoft outlook.
Can anyone write test cases on google account creation page in the testing template format , urgent pls and explain if possible how to execute also
What is smoke test? Do you use any automation tool for smoke testing?