SE(Lecture 22B)

Total Page:16

File Type:pdf, Size:1020Kb

SE(Lecture 22B) Software Engineering Lecture # 22 Quality Concepts • Stages of Software Testing • Requirement Traceability Matrix Stages of Testing Unit testing/Component Testing/Module testing[2,3,6] Integration Testing System testing Acceptance testing Stages of Testing • Unit Testing: Testing the individual components of the system. Involves the design of test cases that validate that the internal program logic of a given unit/component is functioning properly, and that program inputs produce valid outputs. • Integration Testing: Concerned with testing the system as it is integrated from its components. Should focus on Interface testing where the interactions between sub-systems and components are tested. Stages of Testing • System Testing: Testing the system as a whole to validate that it meets its specification and the objectives of its users. The testing of a complete system prior to delivery. The purpose of system testing is to identify defects that will only surface when a complete system is assembled. System testing includes testing of performance, security, startup and recovery from failure modes. • Acceptance Testing: User Acceptance Testing is a phase of software development in which the software is tested in the "real world" by the intended audience. Stages of Testing • Acceptance Testing includes: • Alpha Testing • Beta Testing • Alpha testing – The alpha phase is the software prototype stage when the software is first able to run. It will not have all the intended functionality, but it will have core functions and will be able to accept inputs and generate outputs. An alpha test usually takes place in the developer's offices on a separate system. • Beta Testing - The beta phase of software design exposes a new product, which has just emerged from in-house (alpha) testing, to a large number of real people, real hardware, and real usage. Beta testing is not a method of getting free software long-term, because the software expires shortly after the testing period. Requirement Traceability Matrix (RTM) • A requirements traceability matrix is a document that traces and maps user requirements [requirement Ids from requirement specification document] with the test case ids. • Purpose is to make sure that all the requirements are covered in test cases so that while testing no functionality can be missed. • This document is prepared to make the clients satisfy that the coverage done is complete • This document consists of Requirement/Base line doc Ref No., Test case/Condition, and Defects/Bug id. Using this document the person can track the Requirement based on the Defect id Types of RTM • Forward Traceability – Mapping of Requirements to Test cases • Backward Traceability – Mapping of Test Cases to Requirements • Bi-Directional Traceability - A Good Traceability matrix is the references from test cases to basis documentation and vice versa. Types of RTM • Forward Traceability - This matrix is used to check whether the project progresses in the desired direction and for the right product. It makes sure that each requirement is applied to the product and that each requirement is tested thoroughly. It maps requirements to test cases. • Backward Traceability - It is used to ensure whether the current product remains on the right track. The purpose behind this type of traceability is to verify that we are not expanding the scope of the project by adding code, design elements, test or other work that is not specified in the requirements. It maps test cases to requirements. • Bi-Directional Traceability contains both Forward & Backward Traceability. This traceability matrix ensures that all requirements are covered by test cases and vice versa. Usefulness of RTM • How can I certify that the final software product meets the customer’s needs? • Now we can only make sure requirements are captured in the test cases by traceability matrix. Benefits of using RTM • Make obvious to the client that the software is being developed as per the requirements. • To make sure that all requirements included in the test cases • To make sure that developers are not creating features that no one has requested • Easy to identify the missing functionalities. • If there is a change request for a requirement, then we can easily find out which test cases need to update. Disadvantages of NOT using RTM • Poor or unknown test coverage, more defects found in production • It will lead to miss some bugs in earlier test cycles which may arise in later test cycles. Then a lot of discussions arguments with other teams and managers before release. • Difficult project planning and tracking, misunderstandings between different teams over project Steps to create RTM • Make use of Microsoft Excel to create RTM • Defining Columns (Requirement Id, Requirement description, Test Case Id) • You can make RTM more effective by adding more columns RTM Format Creating RTM - Example • Testers start writing their test scenarios/objectives and eventually the test cases based on some input documents – Business requirements document, Functional Specifications document and Technical design document (optional). Business Requirement Document (BRD) Functional Specification Document (FSD) • The below is the Functional Specifications document (FSD) based on the interpretation of the Business requirements document (BRD) and the adaptation of it to computer applications. Creating test cases for RTM • Based upon the BRD and FSD, test scenarios are generated Creating RTM • Such a document establishes a trace between, the BRD to FSD and eventually to the test scenarios. By creating a document like this, we can make sure every aspect of the initial requirements have been taken into consideration by the testing team for creating their test suites. Creating RTM • You can leave it this way. However, in order to make it more readable, I prefer including the section names. This will enhance understanding when this document is shared with the client or any other teams. The outcome is as below: Creating RTM • For each test scenario that you came up with, you are going to have at least 1 or more test cases. So, include another column when you get there and write the test case IDs as shows below: Creating RTM • At this stage, the Traceability Matrix can be used to find gaps. For example, in the above Traceability Matrix you see that there are no test cases written for FSD section 1.2. • As a general rule, any empty spaces in the Traceability Matrix are potential areas for investigation. So a gap like this can mean one of the two things: • The test team has somehow missed considering the “Existing user” functionality. • The “Existing user” functionality has been deferred to later or removed from the application’s functionality requirements. In this case, the RTM shows an inconsistency in the FSD or BRD – which means that an update on FSD and/or BRD documents should be done. • If it is scenario 1, it will indicate the places where test team needs to work some more to ensure 100% coverage. • In scenarios 2, RTM not just shows gaps it points to incorrect documentation that needs immediate correction. • Let us now expand the RTM to include test case execution status and defects. Creating RTM This version of the Traceability Matrix is generally prepared during or after test execution: Creating RTM • The following are the important points to note about the Traceability Matrix: • 1) The execution status is also displayed. During execution, it gives a consolidated snapshot of how work is progressing. • 2) Defects: When this column is used to establish the backward traceability we can tell that the “New user” functionality is the most flawed. Instead of reporting that so and so test cases failed, RTM provides a transparency back to the business requirement that has most defects thus show casing the Quality in terms of what the client desires. • 3) As a further step, you can color code the defect ID to represent their states. For example, defect ID in red can mean it is still Open, in green can mean it is closed. When this is done, the RTM works as a health check report displaying the status of the defects corresponding to a certain BRD or FSD functionality is being open or closed. • 4) If there is a technical design document or use cases or any other artifacts that you would like to track you can always expand the above created document to suit your needs by adding additional columns. Example • Let's understand the concept of Requirement Traceability Matrix through a banking project. On the basis of Business Requirement Document (BRD) and Technical Requirement Document (TRD), testers start writing test cases. • Lets suppose, the following table is our Business Requirement Document or BRD for banking project. Here the scenario is that the customer should be able to login to xyz banking website with the correct password and user id while manager should be able to login to the website through customer login page. Business Requirement Document Technical Requirement Document • The below table is our Technical Requirement Document • Note: QA teams do not document the BRD and TRD. Also some companies use Function Requirement Documents (FRD) which are similar to Technical Requirement Document but the process of creating traceability matrix remains the same. • Let's Go Ahead and create RTM Creating RTM • Step 1: Our Test Case is • "Verify Login, when correct ID and Password is entered, it should login successfully" Creating RTM • Step 2: Identify the Technical Requirement that this test case is verifying. For our test case, the technical requirement is T94 is being verified. Creating RTM • Step 3: Note this Technical Requirement (T94) in the Test Case. Creating RTM • Step 4: Identify the Business Requirement for which this TR (Technical Requirement-T94) is defined Creating RTM • Step 5: Note the BR (Business Requirement) in Test Case Creating RTM • Step 6: Do above for all Test Cases.
Recommended publications
  • A System Model for Managing Requirement Traceability Matrices Via Statistical Artifact Change Analysis Benjamin J
    A System Model for Managing Requirement Traceability Matrices via Statistical Artifact Change Analysis Benjamin J. Deaver and LiGuo Huang, Southern Methodist University, Dallas Introduction and Motivation Requirement Traceability Matrix – Gantt Open Source Software Project The Value of the Requirements Traceability Matrix The system Requirement Traceability Matrix (RTM) is primarily used for ensuring Our initial dataset for evaluation is taken from the Gantt Open Source PROCEDURE Kannenberg et al identify the underlying necessity of the Requirements Traceability Matrix and the underlying effect on that all requirements are fulfilled by the system artifact deliverables and the Software Project (http://www.ganttproject.biz). The initial trace data 1. Identify the taxonomy of change for a given domain (Systems Engineering, project management, process visibility, verification and validation, as well as project maintainability. Over time, the management of change to deliverables with respect to impact on other systems. In has been provided to us by Dr. Alexander Egyed at the Institute for SoS Engineering, Software Engineering). the systems engineering and system of systems (SoS) engineering landscapes, the Systems Engineering and Automation at Johannes Kepler University. Requirements Traceability Matrix provides significant insight in to the internal workings of the relationships between RTM is a tool that is useful at time of creation, but requires constant maintenance in Additional traces of requirements to code for subsequent Gantt versions 2. Identify and classify changes between static versions of the product. requirements and deliverable artifacts. a frequently changing landscape to maintain the original level of validity. The are being created using similar methods to the original collections 3. Generate Requirements Trace Matrixes for each static version of the product dynamic nature of systems and SoS engineering landscapes requires that a RTM be performed by Dr.
    [Show full text]
  • Traceability Establishment and Visualization of Software Artefacts in Devops Practice: a Survey
    (IJACSA) International Journal of Advanced Computer Science and Applications, Vol. 10, No. 7, 2019 Traceability Establishment and Visualization of Software Artefacts in DevOps Practice: A Survey D. A. Meedeniya1, I. D. Rubasinghe2, I. Perera3 Dept. of Computer Science and Engineering, University of Moratuwa, Sri Lanka Abstract—DevOps based software process has become the artefacts in the SDLC [2][3]. There are different forms of popular with the vision of an effective collaboration between the relationships between the homogeneous and heterogeneous development and operations teams that continuously integrates software artefacts. Some artefacts may be highly coupled, and the frequent changes. Traceability manages the artefact some may depend on other artefacts in different degrees, consistency during a software process. This paper explores the unidirectionally or bidirectionally. Thus, software artefacts trace-link creation and visualization between software artefacts, consistency management helps to fine-tune the software existing tool support, quality aspects and the applicability in a process. The incomplete, outdated software artefacts and their DevOps environment. As the novelty of this study, we identify the inconsistencies mislead both the development and maintenance challenges that limit the traceability considerations in DevOps process. Thus, artefact management is essential such that the and suggest research directions. Our methodology consists of changes are accurately propagated to the impacted artefacts concept identification, state-of-practice exploration and analytical review. Despite the existing related work, there is a without creating inconsistencies. Traceability is the potential to lack of tool support for the traceability management between relate artefacts considering their relationships [4][5]; thus, a heterogeneous artefacts in software development with DevOps solution for artefact management.
    [Show full text]
  • Requirements Traceability Practices Guide
    CDC UNIFIED PROCESS PRACTICE GUIDE REQUIREMENTS TRACEABILITY Document Purpose The purpose of this document is to provide guidance on the project management practice of Requirements Traceability and to describe the practice overview, requirements, best practices, activities, and key terms related to these requirements. In addition, templates relevant to this practice are provided at the end of this guide. Practice Overview Requirements traceability is an activity that is one part of an overarching requirements management practice and extends from requirements definition through to implementation. Requirements tracing is used to ensure that each step of the product’s development process is correct, conforms to the needs of prior and next steps, and conforms to the defined requirements. Requirements tracing is a technique that helps to ensure that the project delivers what stakeholders expect. If applied correctly requirements tracing is a practice that can greatly increase the quality and reliability of a project’s final product while minimizing costly rework resulting from requirements errors. Requirements tracing defines the ability to describe and follow the life of a requirement, in both a forward and backward direction, ideally through each step of the entire product’s life cycle. This is done by documenting and tracking traceability relationships between requirements. A traceability relationship is a dependency relationship between project and/or product elements. Similar to the way a dynamic project schedule may react to a change in one task, a change to a requirement element may also have a rippling effect on other elements. A well documented traceability relationship clearly defines requirement dependencies and allows for analysis of how changes in requirements affect other requirements and the project as a whole.
    [Show full text]
  • Systems Engineering Guided Tour
    Systems Engineering Guided Tour Copyright © 1993–2007 Vitech Corporation. All rights reserved. No part of this document may be reproduced in any form, including, but not limited to, photocopying, translating into another language, or storage in a data retrieval system, without prior written consent of Vitech Corporation. Restricted Rights Legend Use, duplication, or disclosure by the Government is subject to restrictions as set forth in subparagraph (c) (1) (ii) of the Rights in Technical Data and Computer Software clause at DFARS 252.277-7013. Vitech Corporation 2070 Chain Bridge Road, Suite 100 Vienna, Virginia 22182-2536 703.883.2270 FAX: 703.883.1860 Customer Support: [email protected] www.vitechcorp.com CORE® is a registered trademark of Vitech Corporation. Other product names mentioned herein are used for identification purposes only, and may be trademarks of their respective companies. Revised Date: August 2007 ii Table of Contents Creating External Systems ................................ 32 ................... 1 1 Getting Started with CORE Defining the Context Component ...................... 34 The Benefits of CORE ....................................... 1 Adding Detail to the External Systems .............. 35 Installing CORE................................................. 2 Viewing a Physical Hierarchy ............................ 36 Overview of the CORE Product Family ............. 2 Creating Function Elements .............................. 37 Key Concepts .................................................... 3 Establishing
    [Show full text]
  • Managing Project Requirements
    MANAGING PROJECT REQUIREMENTS Course Materials The causes of the majority of failed IT projects can be traced to poor definition and understanding of requirements. Changing requirements causes more delays than any other cause. If you want to improve project performance you must improve the way you define and manage requirements. Requirements must be a clear description in a common language. They are the bridge between the customer who will describe, pay for, and use the solution and the technical community who will specify and provide the solution. Requirements must be unique, normalized, linked, complete, consistent, bounded, modifiable, configurable and granular. Participants will cultivate the skills needed to elicit full business information from the right stakeholders and, learn structured techniques to identify and present business requirements clearly and effectively. Table of Contents Lesson 1: Introduction to Requirements Management ......................................................................... 1 Topic 1: Requirements Definition ....................................................................................................... 2 Exercise 1.1 Evaluating Requirements ............................................................................................... 5 Topic 2: The Project Environment ...................................................................................................... 6 Topic 3: Understanding the Project Charter .....................................................................................
    [Show full text]
  • Verification and Validation
    Requirements Verification and Validation In4Mtx 113 February 2010 Agenda Definitions of V&V Why do we care? Verification Methods VCRMs Verification Techniques Success Criteria Early Verification Planning in the RE Process What Makes Requirements Verification Difficult 2 Definitions Verification: The process of determining whether or not the products of a given phase of the software development cycle fulfill the requirements established during the previous phase. Validation: The process of evaluating software at the end of the software development process to ensure compliance with software requirements. These definitions are taken from : Verifying and validating software requirements and design specifications. Boehm, B W IEEE Software. Vol. 1, no. 1, pp. 75-88. 1984 3 Basically… Verification: "Am I building the product right?" Validation: "Am I building the right product?" 4 Why do we care? Outputs Data/Models In Requirements Database Directly Drives Verifies 5 Remember this process? Inspection Individual Defect evaluation RD planning reviewing at review meetings consolidation Figure 5.1 – Requirements inspection, review, and consolidation Your testers are key stakeholders 6 Verification Methods Industry accepted methods are: Test Analysis Demonstration Inspection S Any guesses to the “S” in T.A.D.I.S? 7 VCRM Verification Cross Reference Matrix Supplemental to the RD This will be required on any RD you’ll ever produce. Guarantee it: 100% Can be combined with the Requirements Traceability Matrix 8 Sample VCRM Req ID Requirement Verification Allocation Success Criteria Method 1 The train doors shall remain D, T Controller SW Once ground speed >= 1mph, closed during all operational train doors lock and remain activities. closed.
    [Show full text]
  • EPRI TR 107330, "Requirements Compliance Traceability Matrix,"
    HF Controls HF CONTROLS CORPORATION HFC-6000 Product Line U--Nuclear Qualification Project ERD 111 EPRI TR 107330 REQUIREMENTS COMPLIANCE TRACEABILITY MATRIX RR901-000-10 Rev C Effective Date: 12/14/2009 Author: Ivan Chow Reviewer: Jonathan Taylor Approval: Allen Hsu Copyright© 2009 HF Controls Corporation 1 of 66 ERD i 11 EPRI TR 107330 Requirement Compliance Traceability Matrix Revision History Date Revision Author Changes 2/3/05 A0 J Taylor Draft 3/1/05 A J Taylor Incorporate review comments 11/19/09 B I. Chow Resolved the inconsistencies about undetectable errors and remedial implementations in RR901-000-01 Rev. B and PP901-000-01 Rev. C SCR 2612, CR 2009-0540 12/9/09 C I. Chow Revised and based on new documented information from the qualification summary report and reconstructed requirement documentations. Table of Contents 1.0 Introduction ...................... ............................................................................... 3 2.0 Traceability M atrix ....................................................................................... 3 3.0 Glossary .................................................................................................... 3 3.1 Traceability M atrix Com pliance ................................................................ 3 3.2 .Abbreviations .............................................................................................. 4 4.0 R eferences .................................................................................................... 5 List of Tables Table 1 - EPRI
    [Show full text]
  • Software Requirements Specification (SRS) Tailoring Standards
    CS 330 Software Engineering Software Requirements Specification (SRS) Tailoring Standards The following description provides the basic document organization, and required information (see the Document Style Guidelines and Standards for information about format). The main thing to remember is that the SRS must contain a Requirements Traceability Matrix (RTM). Each requirement is uniquely identified (using a number) in the body of the document and must be called out in the RTM. Each requirement will use the verb “shall.” Otherwise the statement shall not be considered a requirement. Each item below should be considered required as a major element or section in the SRS. The standard referred to here is IEEE Std. 830-1993. Title Page Abstract1 Frontmatter 1. Introduction (see section 5.1 of the standard for details) 1.1. Purpose 1.2. Scope 1.3. Definitions, acronyms, and abbreviations 1.4. References 1.5. Overview 2. Overall description (see section 5.2 of the standard for details) 2.1. Product perspective 2.2. Product functions 2.3. User characteristics 2.4. Constraints 2.5. Assumptions and dependencies 3. Specific Requirements (see section 5.3 and/or appendix A of the standard for details) 4. References Appendixes Definitions, Acronyms and Abbreviations Requirements Traceability Matrix Schedule (with a description of milestones and deliverables) Walk-through Check List Coding Standards Special Purpose Items: Description of the external items pictured in context diagram Other Special Purpose Items (e.g. JAVA / C++ API; Screen Shots of a GUI) Index (optional) 1 Include in the abstract a complete overview of the product (purpose, goals, and design constraints) including your chosen design methodology, any exceptions to the stated requirements.
    [Show full text]
  • ALS V&V Plan
    Westinghouse Non-Proprietary Class 3 ALS V&V Plan 6002-00003-NP Rev. 8 January 2013 APPROVALS Function Name and Signature Author Simon Lowenfeld* Fellow Engineer, Independent Verification and Validation II Reviewer Jim Pak* Principal Engineer, Independent Verification and Validation I Approver Marci Maher* Manager, Independent Verification and Validation I *Refer to Release Record for Electronic Approval WESTINGHOUSE NON-PROPRIETARY CLASS 3 © 2013 Westinghouse Electric Company LLC All Rights Reserved ALS V&V Plan LIST OF CONTRIBUTORS Revision Name and Title 7 Marci Maher Acting Manager, Independent Verification and Validation I 7 Secil Karaaslan Senior Engineer, Independent Verification and Validation I 7 Jeff Vance Senior Engineer, Independent Verification and Validation I 7 Jim Pak Principal Engineer, Independent Verification and Validation I 8 Marci Maher Manager, Independent Verification and Validation I 8 Warren Odess-Gillett Fellow Engineer, Licensing 8 Marsha White Senior Technical Writer, Technical Communications Template Version 2.2 6002-00003-NP Rev. 8 i Westinghouse Non-Proprietary Class 3 ALS V&V Plan REVISION HISTORY RECORD OF CHANGES a, c , , e 6002-00003-NP Rev. 8 ii Westinghouse Non-Proprietary Class 3 ALS V&V Plan REVISION HISTORY (cont.) RECORD OF CHANGES (cont.) DOCUMENT TRACEABILITY & COMPLIANCE Created to Support the Following Document(s) Document Number Revision N/A OPEN ITEMS Item Description Status None 6002-00003-NP Rev. 8 iii Westinghouse Non-Proprietary Class 3 ALS V&V Plan TABLE OF CONTENTS Section Title Page
    [Show full text]
  • Traceability in Agile Software Projects
    Traceability in Agile software projects Master of Science Thesis in Software Engineering & Management VUONG HOANG DUC University of Gothenburg Chalmers University of Technology Department of Computer Science and Engineering Göteborg, Sweden, May 2013 The Author grants to Chalmers University of Technology and University of Gothenburg the non-exclusive right to publish the Work electronically and in a non-commercial purpose make it accessible on the Internet. The Author warrants that he/she is the author to the Work, and warrants that the Work does not contain text, pictures or other material that violates copyright law. The Author shall, when transferring the rights of the Work to a third party (for example a publisher or a company), acknowledge the third party about this agreement. If the Author has signed a copyright agreement with a third party regarding the Work, the Author warrants hereby that he/she has obtained any necessary permission from this third party to let Chalmers University of Technology and University of Gothenburg store the Work electronically and make it accessible on the Internet. Traceability in Agile software projects VUONG.HOANG DUC VUONG. HOANG DUC, May 2013. Examiner: CHRISTIAN.BERGER University of Gothenburg Chalmers University of Technology Department of Computer Science and Engineering SE-412 96 Göteborg Sweden Telephone + 46 (0)31-772 1000 ABSTRACT Context: Software applications have been penetrating every corner of our daily life in the past decades. This condition demands high quality software. Traceability activities have been recognized as important factors supporting various activities during the development process of a software system with the aim of improving software quality.
    [Show full text]
  • On Human Analyst Performance in Assisted Requirements Tracing: Statistical Analysis
    On Human Analyst Performance in Assisted Requirements Tracing: Statistical Analysis Alex Dekhtyar∗, Olga Dekhtyar†, Jeff Holden∗, Jane Huffman Hayes‡, David Cuddeback∗, and Wei-Keat Kong‡ ∗ Department of Computer Science, Cal Poly, San Luis Obispo, CA, USA Email: {dekhtyar, jholden}@calpoly.edu, [email protected] †Department of Statistics, Cal Poly, San Luis Obispo, CA, USA. Email: [email protected] ‡Department of Computer Science, University of Kentucky, Lexington, KY, USA. Email: [email protected], [email protected] Abstract—Assisted requirements tracing is a process in what tests to rerun. With all the advantages that tracing could which a human analyst validates candidate traces produced offer to NDFC, why are they not using such a tool/process? by an automated requirements tracing method or tool. The First, many organizations undertake manual tracing, per- assisted requirements tracing process splits the difference between the commonly applied time-consuming, tedious, and haps with the assistance of a word processing tool or error-prone manual tracing and the automated requirements spreadsheet. Such a process is boring, tedious, and time- tracing procedures that are a focal point of academic studies. consuming. As a result, it is also error prone [11]. Second, In fact, in software assurance scenarios, assisted requirements once traceability is established for a project, the project arti- tracing is the only way in which tracing can be at least partially facts quickly change, thus necessitating traceability updates. automated. In this paper, we present the results of an extensive 12 month study of assisted tracing, conducted using three Third, there is a lack of an industry-accepted tracing tool.
    [Show full text]
  • 5 Tips on Traceability to Skillfully Control Change and Improve Quality
    INNOVATION IN ACTION Connect the Dots: 5 Tips on Traceability to Skillfully Control Change and Improve Quality. Overview Traceability Helps You Stay Connected, Manage Change & Improve Quality. Yes! What is traceability? It sounds complicated. Why do teams do it? It sounds like a lot of work. Is it really worth the effort? Good questions. The short answer: Yes. And, here’s why it’s so important: Change happens. If managed poorly, change will wreak havoc on even the most talented and experienced development teams. If managed skillfully, using tools like traceability, teams are better equipped to assess the impact of changes, track the full history, keep everyone in sync and (deep breath) consistently improve the quality of the products being built – every project, every release. Sign me up. In some industries, traceability isn’t an option, it’s mandated. Did You Know? “Companies We’d recommend that regardless of the industry you’re in or the process you use – whether you’re building components for with mature requirements commercial airplanes using waterfall or designing the next management and traceability killer iPhone app using an agile method –traceability is a best practice that will benefit your team greatly. processes achieve 75% higher In this paper, our goals are to demystify traceability and its success rates.” – IAG, Business related concepts, and provide five practical tips to help you Analysis Benchmark, 2009 take control and keep everyone in sync. The Five Tips for Mastering Traceability: 1. Create relationships to connect everyone and everything together with Trace Relationships 2. Ensure you have proper coverage using a Traceability Matrix 3.
    [Show full text]