TESTING METHODS IN SE, Slides of Software Engineering

The above uploaded documents covers the following topic in details..these are some verified and important lectures for those studnts or teachers who want to have some knwldge about the following topic along with pratice questions

Typology: Slides

2021/2022

Available from 08/18/2022

SamenKhan
SamenKhan 🇵🇰

231 documents

1 / 61

Toggle sidebar

This page cannot be seen from the preview

Don't miss anything!

bg1
Chapter 8 Software Testing
Chapter 8 Software Testing 130/10/2014
pf3
pf4
pf5
pf8
pf9
pfa
pfd
pfe
pff
pf12
pf13
pf14
pf15
pf16
pf17
pf18
pf19
pf1a
pf1b
pf1c
pf1d
pf1e
pf1f
pf20
pf21
pf22
pf23
pf24
pf25
pf26
pf27
pf28
pf29
pf2a
pf2b
pf2c
pf2d
pf2e
pf2f
pf30
pf31
pf32
pf33
pf34
pf35
pf36
pf37
pf38
pf39
pf3a
pf3b
pf3c
pf3d

Partial preview of the text

Download TESTING METHODS IN SE and more Slides Software Engineering in PDF only on Docsity!

Chapter 8 – Software Testing

Topics covered  Development testing  Test-driven development  Release testing  User testing

Program testing goals  To demonstrate to the developer and the customer that the software meets its requirements. ▪ For custom software, this means that there should be at least one test for every requirement in the requirements document. For generic software products, it means that there should be tests for all of the system features, plus combinations of these features , that will be incorporated in the product release.  To discover situations in which the behavior of the software is incorrect, undesirable or does not conform to its specification. ▪ Defect testing is concerned with rooting out undesirable system behavior such as system crashes, unwanted interactions with other systems, incorrect computations and data corruption.

Validation and defect testing  The first goal leads to validation testing ▪ You expect the system to perform correctly using a given set of test cases that reflect the system’s expected use.  The second goal leads to defect testing ▪ The test cases are designed to expose defects. The test cases in defect testing can be deliberately obscure and need not reflect how the system is normally used.

An input-output model of program testing

Verification vs validation  Verification: "Are we building the product right”.  The software should conform to its specification.  Validation: "Are we building the right product”.  The software should do what the user really requires.

Inspections and testing  Software inspections Concerned with analysis of the static system representation to discover problems ( static verification ) ▪ May be supplement by tool-based document and code analysis. ▪ Discussed in Chapter 15.  Software testing Concerned with exercising and observing product behaviour ( dynamic verification ) ▪ The system is executed with test data and its operational behaviour is observed.

Inspections and testing

Advantages of inspections  During testing, errors can mask (hide) other errors. Because inspection is a static process, you don’t have to be concerned with interactions between errors.  Incomplete versions of a system can be inspected without additional costs. If a program is incomplete , then you need to develop specialized test harnesses to test the parts that are available.  As well as searching for program defects, an inspection can also consider broader quality attributes of a program, such as compliance with standards, portability and maintainability.

Inspections and testing  Inspections and testing are complementary and not opposing verification techniques.  Both should be used during the V & V process.  Inspections cannot check non-functional characteristics such as performance, usability, etc.

Stages of testingDevelopment testing , where the system is tested during development to discover bugs and defects.  Release testing , where a separate testing team test a complete version of the system before it is released to users.  User testing , where users or potential users of a system test the system in their own environment.

Development testing

Unit testing  Unit testing is the process of testing individual components in isolation.  It is a defect testing process.  Units may be: ▪ Individual functions or methods within an object ▪ Object classes with several attributes and methods

Object class testing  Complete test coverage of a class involves ▪ Testing all operations associated with an object ▪ Setting and interrogating all object attributes ▪ Exercising the object in all possible states.  Inheritance makes it more difficult to design object class tests as the information to be tested is not localised.