06 Testability Flashcards
Developer
A person whose primary responsibility is to write source code
Quality Assurance
To ensure that few, if any, defects remain in the software when it is delievered to its customers or released to the market.
Testing (Operational)
The execution of software and the observation of its behavior or outcome demonstrated using controlled experiments
Testing (Operational) Purpose
To demonstrate quality/ proper behavior.
To detect problems that need to be fixed.
Defects/Bugs Types
Errors
Fault
Failure
Bugs
Error:
A mistake made by a programmer or SE which caused the fault which in turn may cause a failure.
- Conceptual mistake.
- Human misunderstanding
Fault
Condition/Internal characteristic that may cause a failure in the system.
Failure
Inability of the system to perform a function according to its specification due to some fault.
- Deviation from expected behavior
- Something goes wrong at execution.
Relationship of Defects
Errors can cause Faults.
Faults can cause Failures.
Testability
The degree to which a system or component facilitates the establishment of test criteria and the performance of tests to determine whether those criteria have been met.
How hard it is to find faults
Testability is dominated by two practical problems
How to provide the test values to the software
How to observe the results of tese execution.
Testability is linked to our:
Prior experience.
The more testable the software
The greater the chance that somebody will test it
Testability Benefits
If the software is developed so that its behavior can be verified, it’s easy to confirm that it supports a certain features.
Fewer Suprises.
More easily changed (Fear results in duplication of defects)
When a program element is testable, it means
That it can be put in a known state, acted on, and then observed.
Can be done without affecting or interfering any other program elements.
What are hiding often at odds with each other?
Observability and Information
Controllability :: Isolability
The ability to put something in a specific state.
Is important to testing because it leads to reproducibility.
The abiility to reproduce a given condition depends on the ability to isolate it and manipulate its internal state.
Components with lots of dependencies are diffcult to modify and test.
Controllability :: Deployability
Is a measure of the amount of work needed to deploy the system into production.
Affects the developer’s ability to run their code in a production-like environment.
Smallness
The smaller the software, the better the testability.
Broken up into:
1. Singularity
2. Efficiency
3. Level of Abstraction
4. Reuse.
Correctness Definitions:
In Traditional Methods, correct behavior is defined completely at the beginning.
In Agile Methods, One way to redefine correctness is to be relative to a specific set of tests.
Test Harnesses
Are automated.
Include a test oracle that can evaluate whether that test executed correctly.
Server as a specification of requirements.
Must be high quality and must run quickly
Run every time we make changes.
Continuous Integration
A software engineering process where isolated code changes are immediately tested and reported on as they are added to a larger codebase.
Provide rapid feedback to identify and correct defects as soon as they are introduced.
Enable automation.