Skip to main content

Black-box testing

Black-box testing is a method of software testing that examines the functionality of an application without peering into its internal structures or workings.

This method of test can be applied virtually to every level of software testing: unit, integration, system and acceptance.

It typically comprises most if not all higher level testing, but can also embody unit testing.

Specific knowledge of the application's code/internal structure and programming knowledge in general is not required.

The tester is aware of what the software is supposed to do but is not aware of how it does it.

For instance, the tester is aware that a particular input returns a certain, invariable output but is not aware of how the software produces the output in the first place.

In penetration testing, black-box testing refers to a methodology where an ethical hacker has no knowledge of the system being attacked.

The goal of a black-box penetration test is to simulate an external hacking or cyber warfare attack.
  _________________________

Comments

Popular posts from this blog

What is SQL ?

SQL (Structured Query Language) is a standardized programming language used for managing relational databases and performing various operations on the data in them. Initially created in the 1970s, SQL is regularly used by database administrators, as well as by developers writing data integration scripts and data analysts looking to set up and run analytical queries. The uses of SQL include modifying database table and index structures; adding, updating and deleting rows of data; and retrieving subsets of information from within a database for transaction processing and analytics applications.  Queries and other SQL operations take the form of commands written as statements -- commonly used SQL statements include select, add, insert, update, delete, create, alter and truncate. _________________________