Introduction to Software Engineering

Similar documents
Lecture 14: Chapter 18!

Software Engineering Software Testing Techniques

Chapter 14 Testing Tactics

Chapter 14 Software Testing Techniques

Software Testing Fundamentals. Software Testing Techniques. Information Flow in Testing. Testing Objectives

Lecture 26: Testing. Software Engineering ITCS 3155 Fall Dr. Jamie Payton

Darshan Institute of Engineering & Technology Unit : 9

Aerospace Software Engineering

SOFTWARE ENGINEERING IT 0301 Semester V B.Nithya,G.Lakshmi Priya Asst Professor SRM University, Kattankulathur

Software Testing. Minsoo Ryu. Hanyang University. Real-Time Computing and Communications Lab., Hanyang University

! Is often referred to as verification and validation (V&V).

SE Notes Mr. D. K. Bhawnani, Lect (CSE) BIT

MTAT : Software Testing

People tell me that testing is

Darshan Institute of Engineering & Technology for Diploma Studies

INTRODUCTION TO SOFTWARE ENGINEERING

MTAT : Software Testing

MTAT : Software Testing

Topic: Software Verification, Validation and Testing Software Engineering. Faculty of Computing Universiti Teknologi Malaysia

Software Testing for Developer Development Testing. Duvan Luong, Ph.D. Operational Excellence Networks

CS 4387/5387 SOFTWARE V&V LECTURE 4 BLACK-BOX TESTING

Chapter 9. Software Testing

UNIT-4 Black Box & White Box Testing

Software Testing. 1. Testing is the process of demonstrating that errors are not present.

Testing Theory. Agenda - What will you learn today? A Software Life-cycle Model Which part will we talk about today? Theory Lecture Plan

UNIT-4 Black Box & White Box Testing

MSc Software Testing and Maintenance MSc Prófun og viðhald hugbúnaðar

MTAT : Software Testing

LECTURE 11 TEST DESIGN TECHNIQUES IV

Verification and Validation

Facts About Testing. Cost/benefit. Reveal faults. Bottom-up. Testing takes more than 50% of the total cost of software development

Software Testing. Massimo Felici IF

Lecture 15 Software Testing

[IT6004-SOFTWARE TESTING] UNIT 2

Software Testing part II (white box) Lecturer: Giuseppe Santucci

What is Structural Testing?

MSc Software Testing MSc Prófun hugbúnaðar

CS 451 Software Engineering Winter 2009

SFWR ENG 3S03: Software Testing

linaye/gl.html

Software Test. Levels of test. Types of test. Regression test The JUnit tool for unit testing Java programs. System test Integration test Unit test

Software Testing Prof. Rajib Mall Department of Computer Science and Engineering Indian Institute of Technology, Kharagpur. Lecture 13 Path Testing

MTAT : Software Testing

Testing. Jessica Young Schmidt, Northeastern University College of Computer and Information Science

Sample Question Paper. Software Testing (ETIT 414)

Overview. State-of-the-Art. Relative cost of error correction. CS 619 Introduction to OO Design and Development. Testing.

Examination Questions Time allowed: 1 hour 15 minutes

VETRI VINAYAHA COLLEGE OF ENGINEERING AND TECHNOLOGY DEPARTMENT OF COMPUTER SCIENCE AND ENGINEERING

Testing. Unit, integration, regression, validation, system. OO Testing techniques Application of traditional techniques to OO software

Chapter 8 Software Testing. Chapter 8 Software testing

Lecture 20: SW Testing Presented by: Mohammad El-Ramly, PhD

Path Testing + Coverage. Chapter 8

2. You are required to enter a password of up to 100 characters. The characters must be lower ASCII, printing characters.

DEPARTMENT OF COMPUTER SCIENCE AND ENGINEERING CS SOFTWARE ENGINEERING

QUIZ #5 - Solutions (5pts each)

Test Design Techniques ISTQB (International Software Testing Qualifications Board)

1 Visible deviation from the specification or expected behavior for end-user is called: a) an error b) a fault c) a failure d) a defect e) a mistake

Structural Testing. (c) 2007 Mauro Pezzè & Michal Young Ch 12, slide 1

Program Correctness and Efficiency. Chapter 2

Testing & Continuous Integration. Kenneth M. Anderson University of Colorado, Boulder CSCI 5828 Lecture 20 03/19/2010

c. Typically results in an intractably large set of test cases even for small programs

CS 520 Theory and Practice of Software Engineering Fall 2018

Software Testing. Software Testing

Using the code to measure test adequacy (and derive test cases) Structural Testing

SECTION 5: STRUCTURED PROGRAMMING IN MATLAB. ENGR 112 Introduction to Engineering Computing

7.0 Test Design Techniques & Dynamic Testing

Second assignment came out Monday evening. Find defects in Hnefetafl rules written by your classmates. Topic: Code Inspection and Testing

Software Testing. Lecturer: Sebastian Coope Ashton Building, Room G.18

International Journal of Engineering Research ISSN: & Management Technology

Structural Testing. Testing Tactics. Why Structural? Structural white box. Functional black box. Structural white box. Functional black box

SOFTWARE ENGINEERING SOFTWARE VERIFICATION AND VALIDATION. Saulius Ragaišis.

Verification and Validation. Assuring that a software system meets a user s needs. Verification vs Validation. The V & V Process

Testing is executing a system in order to identify any gaps, errors, or missing requirements in contrary to the actual requirements.

Subject Software Testing Structural Testing

Sample Exam Syllabus

Software Testing Techniques

Comparing Software Abstractions Baby Steps. Michael Hansen Lab Lunch Talk 2011

Testing! Prof. Leon Osterweil! CS 520/620! Spring 2013!

UNIT 1-2 MARKS QUESTIONS WITH ANSWERS

Write perfect C code to solve the three problems below.

Equivalence Class Partitioning. Equivalence Partitioning. Definition and Example. Example set of classes

UNIT-2. This unit gives an in depth overview of path testing and its applications. At the end of this unit, the student will be able to:

Software Testing. Software Testing. in the textbook. Chapter 8. Verification and Validation. Verification and Validation: Goals

How to Break Software by James Whittaker

Recap on SDLC Phases & Artefacts. Topic: Software Verification, Validation and Testing Software Engineering

Verification and Validation. Ian Sommerville 2004 Software Engineering, 7th edition. Chapter 22 Slide 1

(See related materials in textbook.) CSE 435: Software Engineering (slides adapted from Ghezzi et al & Stirewalt

Testing: Test design and testing process

Software Testing 2. OOD and Testability. White box vs Black box Testing. Software Testing 2 Semester 1, 2006

Part I: Preliminaries 24

By: Eng. Mohammed T. Abo Alroos

Software testing. Ian Sommerville 2006 Software Engineering, 8th edition. Chapter 23 Slide 1

Verification Overview Testing Theory and Principles Testing in Practice. Verification. Miaoqing Huang University of Arkansas 1 / 80

Types of Dynamic System Testing. Testing Practice. Lecture 9

D-Optimal Designs. Chapter 888. Introduction. D-Optimal Design Overview

Linear Loop Transformations for Locality Enhancement

Implementation Techniques

An Introduction to Systematic Software Testing. Robert France CSU

Chapter 3: Dynamic Testing Techniques

In this Lecture you will Learn: Testing in Software Development Process. What is Software Testing. Static Testing vs.

Transcription:

Introduction to Software Engineering (CS350) Lecture 17 Jongmoon Baik

Testing Conventional Applications 2

Testability Operability it operates cleanly Observability the results of each test case are readily observed Controllability the degree to which testing can be automated and optimized Decomposability testing can be targeted Simplicity reduce complex architecture and logic to simplify tests Stability few changes are requested during testing Understandability of the design James Bach, 1994 3

What is a Good Test? A good test has a high probability of finding an error A good test is not redundant. A good test should be best of breed A good test should be neither too simple nor too complex 4

Internal and External Views Any engineered product (and most other things) can be tested in one of two ways: Knowing the specified function that a product has been designed to perform, tests can be conducted that demonstrate each function is fully operational while at the same time searching for errors in each function; [Black-box testing] Knowing the internal workings of a product, tests can be conducted to ensure that "all gears mesh," that is, internal operations are performed according to specifications and all internal components have been adequately exercised. [White-box testing] 5

Test Case Design "Bugs lurk in corners and congregate at boundaries..." Boris Beizer OBJECTIVE to uncover errors CRITERIA in a complete manner CONSTRAINT with a minimum of effort and time 6

Exhaustive Testing loop < 20 X 14 There are 10 possible paths! If we execute one test per millisecond, it would take 3,170 years to test this program!! 7

Selective Testing Selected path loop < 20 X 8

Software Testing white-box methods black-box methods Methods Strategies 9

Black-box test vs. White-box Black-box test Functional or behavioral testing Conducted at software interface Examines some fundamental aspect of a system Ignores internal logic of a software system test White-box test Glass-box or structural testing Uses knowledge of the internal structure of the software Examine procedural detail (logical paths and collaboration b/w components) 10

White-Box Testing... our goal is to ensure that all statements and conditions have been executed at least once... 11

Why Cover? logic errors and incorrect assumptions are inversely proportional to a path's execution probability we often believe that a path is not likely to be executed; in fact, reality is often counter intuitive typographical errors are random; it's likely that untested paths will contain some 12

Basis Path Testing A white-box testing technique Enable to derive a logical complexity measure of a procedural design Provide a guideline defining a basis set of execution paths Guarantee to execute every statement in the program at once First, we compute the cyclomatic complexity: number of simple decisions + 1 or number of enclosed areas + 1 or number of nodes number of edges + 2 In this case, V(G) = 4 13

Cyclomatic Complexity A number of industry studies have indicated that the higher V(G), the higher the probability or errors. modules V(G) modules in this range are more error prone 14

Basis Path Testing 4 1 2 7 3 5 6 Next, we derive the independent paths: Since V(G) = 4, there are four paths Path 1: 1,2,3,6,7,8 Path 2: 1,2,3,5,7,8 Path 3: 1,2,4,7,8 Path 4: 1,2,4,7,2,4,...7,8 Finally, we derive test cases to exercise these paths. 8 15

Basis Path Testing Notes you don't need a flow chart, but the picture will help when you trace program paths count each simple logical test, compound tests count as 2 or more basis path testing should be applied to critical modules 16

Independent Paths? Any path through the program that introduces at least one new set of processing statements or a new condition Test can be designed to force execution of these paths (a basis set) Guaranteed to execute every statement at least once 17

Cyclomatic Complexity A software metric that provides a quantitative measure of the logical complexity of a program Provides a single ordinal number (an upper bound for the number of tests to achieve a complete branch coverage Independent of language and language format Extended to encompass the design and structural complexity of a system 18

Application Areas of CC Code development risk analysis. Change risk analysis in maintenance. Test Planning. Reengineering. 19

Computation of CC 1. V(G), Cyclomatic Complexity = The number of regions in a flow graph, G 2. V(G) = E N + 2 Where E = No. of Edges and N = No. of Nodes 3. V(G) = P + 1 Where P is the number of Predicated Nodes in a flow graph, G 20

Example: CC Computation 1 2,3 R1 1. No. of Regions (R1,..,R4) V(G) = 4 7 6 R3 8 R2 4,5 2. V(G) = 11 Edges 9 Nodes + 2 = 4 9 3. V(G) = 3 Predicate Nodes + 1 = 4 R4 10 11 21

Deriving Test Cases Summarizing: Using the design or code as a foundation, draw a corresponding flow graph. Determine the cyclomatic complexity of the resultant flow graph. Determine a basis set of linearly independent paths. Prepare test cases that will force execution of each path in the basis set. 22

Graph Matrices A graph matrix is a square matrix whose size (i.e., number of rows and columns) is equal to the number of nodes on a flow graph Each row and column corresponds to an identified node, and matrix entries correspond to connections (an edge) between nodes. By adding a link weight to each matrix entry, the graph matrix can become a powerful tool for evaluating program control structure during testing 23

Control Structure Testing Condition testing a test case design method that exercises the logical conditions contained in a program module Data flow testing selects test paths of a program according to the locations of definitions and uses of variables in the program 24

Data Flow Testing The data flow testing method [Fra93] selects test paths of a program according to the locations of definitions and uses of variables in the program. Assume that each statement in a program is assigned a unique statement number and that each function does not modify its parameters or global variables. For a statement with S as its statement number DEF(S) = {X statement S contains a definition of X} USE(S) = {X statement S contains a use of X} A definition-use (DU) chain of variable X is of the form [X, S, S'], where S and S' are statement numbers, X is in DEF(S) and USE(S'), and the definition of X in statement S is live at statement S' 25

Data Flow Testing Cont. Data Flow Anomaly State k K u, k u U u d A k, u, d d D d, k 26

Loop Testing Simple loop Nested Loops Concatenated Loops Unstructured Loops 27

Loop Testing: Simple Loops Minimum conditions Simple Loops 1. skip the loop entirely 2. only one pass through the loop 3. two passes through the loop 4. m passes through the loop m < n 5. (n-1), n, and (n+1) passes through the loop where n is the maximum number of allowable passes 28

Loop Testing: Nested Loops Nested Loops Start at the innermost loop. Set all outer loops to their minimum iteration parameter values. Test the min+1, typical, max-1 and max for the innermost loop, while holding the outer loops at their minimum values. Move out one loop and set it up as in step 2, holding all other loops at typical values. Continue this step until the outermost loop has been tested. Concatenated Loops If the loops are independent of one another then treat each as a simple loop else* treat as nested loops endif* for example, the final loop counter value of loop 1 is used to initialize loop 2. 29

Black-Box Testing requirements output input events 30

Black-Box Testing How is functional validity tested? How is system behavior and performance tested? What classes of input will make good test cases? Is the system particularly sensitive to certain input values? How are the boundaries of a data class isolated? What data rates and data volume can the system tolerate? What effect will specific combinations of data have on system operation? 31

Graph-Based Methods To understand the objects that are modeled in software and the relationships that connect these objects object #1 Undirected link Directed link (link weight) object # 3 Parallel links object #2 Node weight (value ) (a) In this context, we consider the term objects in the broadest possible context. It encompasses data objects, traditional components (modules), and object-oriented elements of computer software. new file is represented as menu select generates (generation time 1.0 sec) allows editing of document tex t (b) contains document window Attributes: background color: white text color: default color or preferences 32

Equivalence Partitioning user queries mouse picks output formats prompts FK input data 33

Sample Equivalence Classes Valid data user supplied commands responses to system prompts file names computational data physical parameters bounding values initiation values output data formatting responses to error messages graphical data (e.g., mouse picks) Invalid data data outside bounds of the program physically impossible data proper value supplied in wrong place 34

Boundary Value Analysis Focus on selecting a set of test cases that exercise bounding values Select test cases at the edges of the class Complementary to Equivalence Partitioning Derive test cases from output domain as well user queries mouse picks output formats prompts FK input data input domain output domain 35

Comparison Testing Used only in situations in which the reliability of software is absolutely critical (e.g., humanrated systems) Separate software engineering teams develop independent versions of an application using the same specification Each version can be tested with the same test data to ensure that all provide identical output Then all versions are executed in parallel with realtime comparison of results to ensure consistency 36

Orthogonal Array Testing Used when the number of input parameters is small and the values that each of the parameters may take are clearly bounded Z Z Y X Y X One input item at a time L9 orthogonal array 37

Model-Based Testing Analyze an existing behavioral model for the software or create one. Recall that a behavioral model indicates how software will respond to external events or stimuli. Traverse the behavioral model and specify the inputs that will force the software to make the transition from state to state. The inputs will trigger events that will cause the transition to occur. Review the behavioral model and note the expected outputs as the software makes the transition from state to state. Execute the test cases. Compare actual and expected results and take corrective action as required. 38

Software Testing Patterns Testing patterns are described in much the same way as design patterns (Chapter 12). Example: Pattern name: ScenarioTesting Abstract: Once unit and integration tests have been conducted, there is a need to determine whether the software will perform in a manner that satisfies users. The ScenarioTesting pattern describes a technique for exercising the software from the user s point of view. A failure at this level indicates that the software has failed to meet a user visible requirement. [Kan01] 39

Q & A 40