What are the key ideas for performing WhiteBox Testing?

Questions by RyanJames   answers by RyanJames

Showing Answers 1 - 3 of 3 Answers

kokkikumar

  • Jul 9th, 2008
 

Use an automated coverage monitor for the analysis of control flow-based unit testing. Compute the cyclomatic complexity to determine the least number of test cases that should be written. This number does not consider equivalence class partitioning or boundary value analysis – which should be done for most decision points. Draw the flowgraph for a code segment – at least until you get more used to computing cyclomatic complexity. At a minimum, write enough white box test cases to cover 100% of your statements. Get as high a coverage as possible with your decision/branch and condition coverage.

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions