Skip to the content.

Index

Nutshell

Objectives:

Validation & Verification (V&V)

Analysis & Testing (A&T)

Analysis

Testing

Dependability

Dependability Qualities

Assessing Dependability

Framework for A&T

Objectives

Terms

Basic Principles

Objectives

Main A&T Principles

They can be used to understand advantages and limits of different approaches and compare different techniques

Finite Models and Finite Machines

Control Flow Graph (CFG)

nodes: regions of source code (basic blocks)

directed edges: possibility that program execution proceeds from the end of one region directly to the beginning of another

Finite State Machines

nodes: finite set of states

edges: set of transitions among states

Data Flow

Def-Use

A definition-clear path is a path along the CFG from a definition to a use of the same variable without another definition of the same variable between

If, instead, another definition is present on the path, then the latter definition kills the former

Dominators

Adequacy

$C_{DU_pairs} = \frac{\text{number of exercised DU pairs}}{\text{number of DU pairs}}$

Reach Algorithm

$Reach(n) = \bigcup\limits_{m \in pred(n)} ReachOut(m)$

$ReachOut(n) = (Reach(n) \ kill(n)) \cup gen(n)$

$gen(n) = \{v_n | \text{v is defined or modified at n}\}$

$kill(n) = \{v_x | \text{v is defined or modified at x, x} \neq \text{n}\}$

Functional and Combinatorial Testing

Functional testing

Deriving test cases from program specifications.

Steps: From specification to test cases

  1. Decompose the specification
  2. Select representatives
    Representative values of each input, or
    Representative behaviors of a model
  3. Form test specifications
  4. Produce and execute actual tests

Random Testing

All of the test inputs are generated randomly.

Random Testing as a four-step procedure:

  1. The input domain is identified
  2. Test inputs are selected independently from the domain
  3. The system under test is executed on these inputs. This inputs constitude a random test set.
  4. The results are compared to the system spesification. The test is a failure if any input leads to incorrect results; otherwise it is a success.

Combinatorial Testing

Category partition

  1. Decompose the specification into independently testable features
    • Choosing categories
    • Categories reflect test designer’s judgment
    • Choosing categories well requires experience and knowledge
  2. Identify relevant values
    • Identify (list) representative classes of values for each of the categories
    • Representative values may be identified by applying
      • Boundary value testing
        • select extreme values within a class
        • select values outside but as close as possible to the class
        • select interior (non-extreme) values of the class
      • Erroneous condition testing
        • select values outside the normal domain of the program
  3. Introduce constraints
    • A combination of values for each category corresponds to a test case specification
    • Introduce constraints to
      • rule out impossible combinations
      • reduce the size of the test suite if too large

Pairwise

Generate combinations that efficiently cover all pairs (triples,…) of classes (instead of exhaustive)

Structural Testing

Statement testing

Adequacy criterion: each statement (or node in the CFG) must be executed at least once

Branch Testing

Adequacy criterion: each branch (edge in the CFG) must be executed at least once

Basic Condition Testing

Adequacy criterion: each basic condition must be executed at least once

Modified Condition/Decision (MC/DC)

Motivation: Effectively test important combinations of conditions, without exponential blowup in test suite size

Important combinations: Each basic condition shown to independently affect the outcome of each decision

Path Testing

Adequacy criterion: each path must be executed at least once

Fault Based Testing

Testing based on common software faults

Error seeding Technique

Mutation Technique

Note:

Unit Testing

Regression Testing

Unit Testing

System Testing