Code Coverage Analysis is used for which type of testing by QA developer?
-
Functional Testing
-
Unit Testing
-
Performance Testing
-
Integration Testing
B
Correct answer
Explanation
Code Coverage Analysis is used during unit testing to measure which lines/branches/paths of code are executed by test cases. It helps QA developers identify untested code, improve test completeness, and ensure critical code paths are exercised. It's not primarily for functional, performance, or integration testing (though it can complement them).