DEV Community

Cover image for Black Box Testing
Furkan Gulsen
Furkan Gulsen

Posted on

Black Box Testing

Black Box Testing from software test design techniques; It is a test technique that is used to measure the functionality of the system without knowing the internal structure of the software, that is, without looking at the code. It can be applied without having knowledge of the architectural structure or source code, by seeing the related system as a black box. The purpose of black box tests is to measure whether outputs that meet the requirements are received. Outputs that we do not expect should be tested as well as the outputs we expect to receive from the system.

This test design technique is one that testers often use. Black box testing; It can be used at all levels of testing such as unit, integration, system and user acceptance testing. Black box testing technique has advantages as well as disadvantages. Let’s examine the advantages and disadvantages.

Image description

Advantages of Black Box Tests:

  • No code knowledge is needed as it is made by testers.
  • Since the developer and tester of the code are different, it can be tested from different perspectives and even invisible errors can be found easily.
  • Tests can be administered quickly and effectively.
  • Test scenarios can be created right after the requirements are determined.
  • When this method is used in large-scale systems, very high efficiency is obtained.

Image description

Disadvantages of Black Box Tests

  • Since the internal structure of the system is not known, it becomes difficult to find clustered errors in the source code.
  • It can be repeated by the developer’s own tests already.
  • Cannot be used in software containing complex code blocks.
  • It is not possible to check all possibilities, so there may be untested functions.

7 Different Black Box Test Techniques

1. Equivalence Division Design

It can also be called the equivalence fractionation test technique. In its simplest definition, it is grouping test conditions that have the same characteristics and testing applications, with a limited data set selected from each of the determined groups.


2. Boundary Value Technique Design

It is a boundary value technique. It is the tests done by checking the lower and upper limits of the variable instead of focusing on a single point in the software to find the errors in the software. Furthermore, it is used because the probability of error in the limit values of the software is slightly higher.


3. Decision Table Test Design

It is a decision table testing technique. It is used for multi-condition complex software with specified requirements. The business rules are written on a table, and the values that can be taken for the inputs and which output can be taken for which input are shown in this table. All possible test scenarios are written in this table.


4. Classification Tree Test Design

Classification tree is a test design technique. It is a technique that models the object used for testing in a tree view of hierarchical equivalence shares and generates test scenarios based on the relations of these shares with each other.


5. Paired Test Design Technique

It is a paired test design technique. It is a testing technique that significantly reduces the number of test scenarios in cases where the function of the software being tested has more than one combination. Rather than scenarios where one input and one output are entered, two inputs increase error detectability. This technique saves a lot of time.


6. State Transition Test Design Technique

It is a state transition test design technique. It is done by evaluating the past and current conditions of the software. Transitions between states are tested. Successful transitions and unsuccessful transitions are plotted into a diagram. It is a technique often used on embedded or electro-mechanical systems.


7. Use Case Test Design Technique

In this technique, a test scenario is produced using functional and non-functional requirements. The most important feature of this technique is that the scenarios are clear and detailed. Basically, the test method measures a user and whether the situations that this user expects from the system occur.

Top comments (0)