COEN 286: Software Quality Assurance and Testing -- fall, 2001

Testing Objectives

Prof. John Noll

Santa Clara University

Tue Nov 13 16:19:20 2001


 

1. Objectives

1.1 What can be achieved?

1.2 The purpose of testing

The purpose of testing is to find problems.

The purpose of finding problems is to get them fixed.

2. Test types

2.1 Verification

2.2 White box testing

Testing by execution using knowledge or design or implementation.

Coverage


    
      if (A > B && C == 0) {
         C = 1;
      }
      D = A / D;
  

2.3 Black Box Testing

Functional testing of program features as specified.