1.

Can you describe the different types of test coverage techniques?

Answer»

Among the different types of test coverage techniques are:



  • Statement/Block Coverage: Measures how many statements in the source code have been successfully executed and tested.


  • Decision/Branch Coverage: This metric measures how many decision control structures were successfully executed and tested.


  • Path Coverage: This ensures that the tests are conducted on every possible route through a section of the code.


  • Function coverage: It measures how many functions in the source code have been executed and tested at least once.




Discussion

No Comment Found