0
14kviews
What are the types of errors detected by black-box testing

Mumbai University > Information Technology > Sem 8 > Software Testing and Quality Assurance

Marks: 5 Mar

Difficulty : Medium

1 Answer
0
784views

Black box testing is the software testing method which is used to test the software without knowing the internal structure of a code or program. There are various techniques used to test the code under black-box testing for finding various types of errors. This method attempts to find errors in the following categories:

  1. Incorrect or missing function.

  2. Interface errors.

  3. Errors in data structures or external database access.

  4. Behavior or performance errors.

  5. Initialization and termination errors.

Following are the different testing techniques which covers the above error categories.

A] Boundary value analysis (BVA)

Boundary value analysis is the most commonly used test case design method for black box testing. As all we know the most of errors occurs at boundary of the input values. This is one of the techniques used to find the error in the boundaries of input values rather than the center of the input value range.

B] Equivalence class partitioning

The equivalence class partitioning is the black-box test case design technique used for writing test cases. This approach is used to reduce huge set of possible inputs to small but equally effective inputs. This type of method is used to find errors in the data structure and can test the complete set of program in partition.

Please log in to add an answer.