- Mastering Software Testing with JUnit 5
- Boni García
- 410字
- 2021-07-02 15:34:23
Software defects
Key to the correctness aspect of V&V is the concept of software defects. The term defect (also known as bug) refers to a generic software problem. The IEEE Standard 610.12 propose the following taxonomy related to software defects:
- Error: A human action that produces an incorrect result. Errors can be classified into two categories:
- Syntax error (program statement that violates one or more rules of the language in which it is written).
- Logic error (incorrect data fields, out-of-range terms, or invalid combinations).
- Fault: The manifestation of an error in the software system is known as a fault. For example, an incorrect step, process, or data definition.
- Failure: The inability of the software system to perform its required functions is known as (system) failure.
In addition to this level of granularity for defects, it is also interesting to contemplate incidences as symptoms associated with a failure perceived by the software consumer. All in all, error, faults, failures, and incidences are different aspects of software defects. A causal relation exists between these four aspects of defects. Errors may cause faults to be injected into the software, and faults may cause failures when the software is executed. Finally, incidences happen when failures are experienced by the final user or costumer. Different QA activities can be carried out to try to minimize the number of defects within a software system. As defined by Jeff Tian in his book Software Quality Engineering (2005), the alternatives can be grouped into the following three generic categories:
- Defect prevention through error removal: For example, the use of certain processes and product standards can help to minimize the injection certain kinds of faults into the software.
- Defect reduction through fault detection and removal: The traditional testing and static analysis activities are examples of this category. We discover the specific types of these mechanisms in the body of this chapter.
- Defect containment through failure prevention: These activities are typically out of the scope of the software system. The objective of containment is to minimize the damage caused by software system failures (for example, walls to contain radioactive material in case of reactor failures).

- DevOps for Networking
- Java Web開發(fā)之道
- AIRAndroid應用開發(fā)實戰(zhàn)
- 機器人Python青少年編程開發(fā)實例
- Java游戲服務器架構(gòu)實戰(zhàn)
- PostgreSQL Replication(Second Edition)
- R大數(shù)據(jù)分析實用指南
- 精通MATLAB(第3版)
- Angular開發(fā)入門與實戰(zhàn)
- Microsoft Dynamics AX 2012 R3 Financial Management
- C專家編程
- C++編程兵書
- Instant Debian:Build a Web Server
- Java編程從入門到精通
- Mastering Elixir