Monday, July 30, 2007

Code Coverage

  1. Statement Coverage - Has each line of the source code been executed and tested?
  2. Condition Coverage - Has each evaluation point (such as a true/false decision) been executed and tested?
  3. Path Coverage - Has every possible route through a given part of the code been executed and tested?
  4. Entry/Exit Coverage - Has every possible call and return of the function been executed and tested?
(Source wiki)

No comments: