Chapter 8 Flashcards
Why do we need TESTING?
To show that a program does what it is INTENDED to do and to discover program DEFECTS
What can testing REVEAL?
Testing can reveal the presence of ERRORS, but NOT their absence.
Draw a scheme of testing as input-output process
Input test data—>[System]—–> Output test results
what doe V&V stand for?
Verification and Validation
What is Verification ?
“Are we building the product right”.
It means the software should conform to its specification.
What is Validation?
“Are we building the right product”.
It means the software should do what the user really wants
What is the goal of V&V?
It’s to establish confidence that the system is
‘fit for purpose’.
What does the confidence of **V&V **depend on?
1)Software’s purpose, 2)user expectations and
3)marketing environment
what is Software INSPECTION?
inspections involve people examining the source representation with the aim of discovering ANOMALIES and DEFECTS.
what are ADVANTAGES of INSPECTION?
Due to inspection being a static process, you don’t have to worry about errors hiding each other
Incomplete versions of a system can be inspected
without additional costs.
other that error detection, Inspection can also check compliance with standards, portability
and maintainability.
Name stages of testing:
- Development testing
- Release testing
- User testing.
what stages does Development testing include :
1.Unit testing
2. Component testing
3. System testing
what is Unit testing?
It’s testing individual components in isolation.
It is a defect testing process.
What does Unit testing check?
1) Individual functions
2)Object classes
3) Composite components
what parts does the automated test have?
- A setup part
- A call part
- An assertion part