what is test coverage?
Answers were Sorted based on User's Feedback
Answer / raamu
a)ensure that all possible secnarios coverd according to
requirement by applying testing technics
b)ensure that atleast one test case is avilable for each
requirement given by client...
| Is This Answer Correct ? | 7 Yes | 1 No |
Answer / kavita
Test coverage is the degree to which a program has been
tested. There are 5 kinds of Test coverage
1. Function coverage - Has each function in the program
been executed?
2. Statement coverage - Has each line of the source code
been executed?
3. Condition coverage (also known as Branch coverage) - Has
each evaluation point (such as a true/false decision) been
executed?
4. Path coverage - Has every possible route through a given
part of the code been executed?
5. Entry/exit coverage - Has every possible call and return
of the function been executed?
| Is This Answer Correct ? | 3 Yes | 0 No |
Testcase coverage gives information about number of testcases
created ,number of testcase executed number of testcases passed,number testcases failed, for a particular release. finally it gives information about what testing done for different requirements in terms of percentage
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / mfsi_priyankaa
Test coverage - A measure of the proportion of a program
exercised by a test suite, usually expressed as a
percentage. This will typically involve collecting
information about which parts of a program are actually
executed when running the test suite in order to identify
which branches of conditional statements which have been taken.
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / s srinivas reddy
A measure of the proportion of a program exercised by a test
suite, usually expressed as a percentage. This will
typically involve collecting information about which parts
of a program are actually executed when running the test
suite in order to identify which branches of conditional
statements which have been taken.
The most basic level of test coverage is code coverage
testing and the most methodical is path coverage testing.
Some intermediate levels of test coverage exist, but are
rarely used.
The standard Unix tool for measuring test coverage is tcov,
which annotates C or Fortran source with the results of a
test coverage analysis. GCT is a GNU equivalent.
| Is This Answer Correct ? | 0 Yes | 1 No |
Answer / geethathiraviam
test coverage is nothing but the number of test cases
executed out of available test cases
| Is This Answer Correct ? | 0 Yes | 2 No |
How is ‘build’ different from ‘release’?
What is the differnt between Test condition and TesT Scenario
what is a RAD (Rapid Application Development) Model when do the firm go for such a model?
what is meant by Priority nad severity?
11 Answers HCL, Infosys, Verizon,
what is Persistent Testing.
Once a bug is found how do u report it?wat is the process?
Generally Where do we concentrate more on the web based applications testing....fox ex: security testing, performance testing etc....
what is corrective & Preventive Action
(hi friends : please give me reply soon ) i have completed my software testing course , now am planning to put a fake of 1.5 yrs, i need two projects to put in my resume , if anybody has any real time experience and those who handled a project( 6-8 months )in the telecom domain ,please send me the details regarding the project ...it will a great help for me ..if u have suggestion let me know ....
what is PVCS
Enlist types of testing performed for any window in sequence?
Why are initial and end conditions necessary?