Verification and Validation of Software Components and Component Based Software Systems
|
|
|
- Myra Mosley
- 10 years ago
- Views:
Transcription
1 Chapter 5 29 Verification and Validation of Software Components and Component Based Christina Wallin Industrial Information Technology Software Engineering Processes ABB Corporate Research [email protected] Abstract: One premise with component based software technology is that the software component consumers, that is the software system builders, can decrease their effort needed for, among other things, verification of their component based software systems compared to traditional custom developed systems. But to reach this goal the component producers instead has to ensure a high, documented and trusted quality of their commercial components; else the effect will be the opposite. It should be easier to assemble pre-made software component into systems than to develop everything from scratch, but if a used software component is of poor quality the system verification task can be very difficult, time consuming and thereby expensive. The traditional techniques for verification and validation are still essential to ensure software quality, especially for the software component producers. Detailed specifications of the software, and thorough verifications against these specifications are ways to certify the component functionality and quality in a way that can be trusted by the component consumers. Also a defined software development process and appropriate development methods and tools ensure a high software quality. For the component consumers software verification is not like traditional verification. Software faults cannot be found and corrected by traditional debugging techniques, as most of the source code is not available. Instead a more research like technique has to be used to locate faults and workarounds has to be implemented to avoid them. 1 Introduction The emerging technology of Component Based Software Development put new demands on how to ensure the needed functionality and quality of the software. In traditional, or custom developed software, verification and validation could be done in close cooperation with the customer to meet the specific requirements from the customer [4]. When developing software components, or component based software systems, verification and validation becomes a bit more complicated. Components developed for reuse, and especially components developed for the open market, has to be more thoroughly specified and verified then most custom software for many reasons. Others than those that have developed them will use them. They will be used in many different situations and configurations, many of them not foreseen at the time of development. They will be not be delivered together with its source code, but as black boxes [7]. On the other hand, software systems developed by means of components should require less verification than custom software systems; at least this is one of the premises with component based software technology. But if the quality of the used components is not enough, identifying defects in a component-based system can be both difficult and expensive [2]. Instead of
2 30 Chapter 5 systematically searching through the software code for faults, a more research like approach has to be used to locate defects [10]. Instead of correcting a defect, a work around has to be developed to avoid it. There are two ways to ensure the quality of a software component or software system. One way is to identify (and then remove) defects introduced; this is done by means of different verification and validation activities. Another way is to prevent the defect introduction; this is done by means of an appropriate development process. But ensuring the functionality and quality is not enough, for commercial components functionality and quality also has to be certified, that is proofed in a trusted way. Section 2 describes shortly some traditional and some new verification and validation techniques, section 3 discusses some aspects of defect prevention, section 4 describes shortly some issues around software certification and section 5 discusses about which verification and validation techniques that are useful in the different component based software development processes. 2 Verification & Validation Techniques The purpose of verification is to assure that the software components or software systems meet their specified requirements [3]. Specified requirements are not only found in requirements specification documents but also in functional specifications, architecture and design models, test cases and so on. Specified requirements can also be found in regulations, standards, instructions, and guidelines and similar that puts constraints on the software. The purpose of validation is to demonstrate that a software component or system fulfills its intended use when placed in its intended environment [3]. There are two main techniques, inspections and tests, which may be used for software verification. Tests are also used for software validation [4]. The purpose with both inspections and tests is to identify defects in the software. Inspections, or static verification, are used to check and analyze representations of the software component or system such as specifications, models and source code. Testing, or dynamic verification and validation, involves executing and examining an implementation of the software component or system [4]. Verification and validation should be performed continuously during the development of a software component or system. Specifications of the software are crucial to support verification and validation [4] [6]. Specifications define the correct structure and behavior of the software so that incorrectness can be identified. Incorrectness is software faults (also called defects or bugs) and can cause software failures. Software can also fail due to environmental constraints not caused by software faults. 2.1 Inspections Systematic software testing requires a large number of tests to be developed, executed and examined and this means that testing is both time-consuming and expensive. Inspections have proved to be an inexpensive and effective technique to identify defects for two reasons [4]. One reason is that many defects can be found during one inspection session while a test normally only identifies one or a few defect at the time. The other reason is that inspections reuse domain and implementation knowledge among the reviewers in a more efficient way than tests.
3 Chapter 5 31 Inspections can be done on different levels of formality and can either be done manually or by means of some analysis tools Manual Inspections Techniques Audits and assessments are formal inspection techniques and are based on interviews and reviews of work products such as documents, models and source code. Stakeholders or experts or quality responsible or similar external to the software development responsible normally does audits and assessments and the also decide what and how to inspect. Audits and assessments findings are documented and corrections based on these findings should be verified again. Formal reviews are normally done internally by the software development team itself. Relevant work products are sent out the review team members and each reviewer report his/hers findings. The final result is summoned on a review meeting. Findings are documented and corrections based on these findings should be reported [4]. Peer reviews are more informal inspections performed between colleagues. It is an exchange of services. Findings are normally not documented and corrections are not reported. The most extreme usage of peer reviews can be found in extreme Programming (XP) [9], that describes a Pair Programming strategy where two colleagues, or more, work in pair or groups cooperating in analysis, design, coding and test all the time Tool Based Inspections The most common software inspection tool is the source code compiler. A lot of software fault are identified in a very early stage of development by the compiler. Static source code analyzers are software tools that scan the source code and detect possible faults and anomalies by analyzing the control flow, data usage, interfaces, and also information flow and execution paths if applicable [4]. Static program analysis of executable software is done with tools that can analyze software contents, structure, and logic by examining the executable file image. Binary viewer and editor tools show the binary code of the software and the corresponding ASCII representation and allows minor modifications (patches) of the code. Dis-assemblers can create pseudo code representation of the binary code and de-compilers can even reconstruct the original source code [10]. 2.2 Tests Testing of software components (and component based software systems) is possibly the single most demanding aspect of component technology [1]. When a software component is developed all future usage of it cannot be known and thereby not tested, and when the software component is integrated into a system it should already be tested and ready for use. The possibility to reuse pre-made and tested components is the core of the component technology. Software testing is the activity of executing software to determine whether it matches its specifications and executes in its intended environment [6]. The fact that the software is
4 32 Chapter 5 executed distinguishes test from code inspections in which the un-compiled source code is read and analyzed. Testing requires a running executable. Testing can be grouped depending of the focus and level of details of the test. White box tests verify the details of the software, how it is designed and implemented. Black box tests verify the functionality and quality of the software without consideration of it implementation. Live tests validate the software behavior under operational conditions. White and black box tests are primarily done to identify faults while live tests are primarily done to prove that the software works as intended during operation White Box Tests White box testing (also called code based testing or structure testing [6]) is done to verify that a piece of software is implemented and works as intended. During structure testing all source code should be verified, that means that every statement should be executed at least once and all paths through the code should be followed [5]. Structure testing can be done with a debugging tool, which allows evaluation and manipulation of the code during execution, and with trace logs Black Box Tests Black box testing (also called specification based testing or functional testing [6]) is done to verify a software component or system s behavior without consideration to how the software is implemented. The black-box test looks at what output the software returns when given a certain input and starting in a particular state [5]. For most software the combination of all possible inputs, starting states and expected outputs is almost infinite which makes it more or less impossible to test every combination. One good approach to design test cases for black-box testing is to identify all equivalence partitions that has to be tested and then pick at least one set of test data from each partition [4,5]. Another good approach is to identify the operational profile of the software. The operational profile of the software reflects how it will be used in practice [4,8] or put in other words the operational profile is the distribution of use cases when the system is in normal operation [7]. The operational profile is a specification of types of inputs and the probability of their occurrence and it is found by tracing the usage of the software during normal operation. This means that it is quite difficult to identify the operational profile for a completely new software, at least one version of the software, including trace loggers, has to be put in operation and be used for a while before enough data is collected to identify the operational profile [8]. The operational profile can be used to design test cases for statistical testing. Probing can be used to observe the state (parent-child, threads, stacks, resources, signals, events, queues, system calls and files) of individual software components within a component-based system during execution, or postmortem. Probing is done by means of tools that are usually specific to, and distributed with the actual operating system [10]. Snooping can be used to observe the communication between two or more components within a component-based system during execution. Also snooping is done by means of tools that are usually specific to the operating system [10].
5 Chapter 5 33 Spoofing can also be used to observe the communication between components but in this case by means of interposing an observer between the components. Some spoofing tools exist and they are not so dependent on the operating system as probing and snooping tools [10]. Spoofing can also be done by developing specific test components and interpose them between the components that should be observed. System-level fault injectors test the system by creating errors in it [7]. One fault injection technique is the so-called interface propagation analysis (IPA). IPA corrupts the states propagated through the component interfaces by means of for example a specific test component interposed between two system components, the same technique as spoofing. The test component replaces the original state propagated between the system components with a corrupt state during software execution Live Tests Statistical testing is used to check how the software works under operational conditions. The test cases are designed to, based on the operational profile, simulate normal software usage and the goal is to get data to estimate the software reliability and performance during normal system operation. Operational testing of a software system and its integrated components is performed during system operation. Components should be deployed in such a way that any faults leave logged traces so failures in the software systems in operation can be traced [1]. The system should be deployed in such a way that the usage of the system is traced and the operational profile can be identified. 3 Defect Prevention To decrease the effort needed to identify software faults, the faults should not be introduced in the first place. One way to prevent defects to be introduced into the source code is to use implementation languages and development tools fit for the purpose. A safe and expressive language rules out some of the possibilities to introduce defects, for example memory leaks, and also allows the compiler and source code analysis tools to catch faults early during implementation [1]. Another way to prevent the introduction of defects is to have a mature software development culture and use a defined software development process. With defined software development process means rules, instructions, procedures, guidelines, good practices, checklists, patterns, templates, examples, methods and tools and so on that guides the software development. With mature software development culture means that the software development process evolves as experience is gained. During for example software inspections knowledge and experience is captured that should be transferred back to the defined software development process [4]. This will prevent even more defects to be introduced in the future. One example of example of a defined software development process is the Clean-room process [4]. The Clean-room process uses incremental development practice combined with a formal requirements change request procedure. All software is formally specified with for example state
6 34 Chapter 5 transition models, and then verified with formal inspections against these specifications. The source code is written in a structured way exactly as stated in the specifications with only a few allowed constructions. Only statistical tests of the software, based on the operational profile, are performed to certify the system, no structure or specification testing is performed. 4 Software Certification Software certification is nothing new; it has a long history in the software industry. The common use of certification is that some authoritative organization attests to the fact that some software satisfies some criteria or conforms to some specification [2]. Certification has two purposes, one is to establish facts about the software being certified, and the other is to establish trust in the validity of these facts. Certification of a custom developed software systems is not that difficult but certification of software component and component-based systems is a little bit more complicated [2]. Software components have to be certified before they are integrated into a system and they have to be certified for usage in many different configurations. A component certificate says (hopefully) something about the quality of the component, but (probably) nothing about the quality of the component based system it will be a part of. Even if a component vendor certifies a component, the system builder still has to certify it for their specific usage [7]. Certification of a software component or system can be done in two ways. One is to let some trusted independent organization or institute perform an assessment of the software according to some established standard. The result from the assessment is then provided with the software. This way is probably both time-consuming and expensive, especially for components. Another way to certify the software itself is to do as in the process industry. Verification and validation of the software could be done according to some standard and the final verification and validation results are provided with the software. But no common practice is established for this yet. A way to indirect certify software from the trust perspective, is to certify the software development process. ISO 9000 and TickIt assessments are commonly known certification methods. CMM (Capability Maturity Model) assessment [3] includes another method to assess the development process, but it is normally not regarded as a certificate in the same way as ISO9000. Whether certifying the development process will increase the trust in the software itself depends on how dependent the software quality is of the development process quality. If the dependency is high certifying the development process may prove to be an economical alternative to software certification [2]. For example, if a software component is developed by an organization that is certified to follow the Clean-Room Process completely the component will be implemented exactly as specified, that can be trusted, and the specifications can be read so also the facts about the component is available. 5 Verification & Validation and Component Based Software All of the traditional verification and validation techniques are still valid in Component Based Software Development, but the main focus differs depending on if the task is to develop (produce) (re)usable components or if the task is to use (consume) components.
7 Chapter Verification & Validation from the Component Producer perspective Producing reusable software components for the component market requires rigid verification and validation of the component. Implicitly then also rigid specifications is required. This gives that more effort will probably be invested in the component software than if custom software is developed. Component software development activities does not differ much from custom software development activities. Requirements have to be analyzed, the functionality and quality has to be specified and the specifications have to be verified with document and model inspections. The architecture and detailed design has to be specified although architectural design may be limited for small components. The design models should also be verified by means of inspections. The code has to be written, inspected and white box tested to verify its compliance with the design. The functionality and quality of the component has to be black box tested to verify the compliance with the corresponding specifications. Finally the component should be certified and deployed together with its certificate and other externally interesting specifications. 5.2 Verification & Validation from the Component Consumer perspective OTS (Off The Shelf) components are often delivered in black-boxes as executables with licenses that forbid de-compilation back to source code [7]. Due to this they cannot be verified by means of white box testing, as the source code is not available. If an OTS-component is not delivered together with a component certificate, or the certificate is not trustable, different blackbox tests have to be performed to provide information useful for the evaluation and selection of components and to certify it for usage. Quality problems using OTS-components is not just a matter of the quality of each component but also a matter of component integration compatibility. The OTS Component Certification Process [7] suggests a combination of three verification and validation techniques to certify an OTS-component for usage; black box testing based on the systems operational profile, system-level fault injection and operational testing. After a component with the required functionality is selected and evaluated black box testing is performed to verify the quality of the component. If the identified defects are acceptable the component is integrated into a system that is then tested with system-level fault injections to validate system behavior due to component failure. Finally, if the component seems to be acceptable to the system, an operational testing is performed to validate that the component (and the system) is behaving correctly during normal system operation. 5.3 Verification & Validation of Component Based Component Based development activities are basically the same as custom software development activities. Requirements have to be analyzed, the functionality and quality has to be specified and the specifications should be verified with document and model inspections. The addition is that requirements on functionality and quality of needed software components also have to be specified as input to the component selection and evaluation activities. The architecture and some detailed design also have to be specified. Especially the architecture design model should be verified by means of thorough inspections. Some code probably has to be written to integrate the selected components, the code should be inspected and white box tested to verify its compliance with the architecture and detailed design. The
8 36 Chapter 5 functionality and quality of the integrated system has to be black box tested to verify the compliance with the corresponding specifications. Finally the system should be certified, or tested for acceptance as the more common wording is in this case, and deployed. In custom developed software systems faults can be found by performing white box testing but in component based software systems fault identification can be much more difficult [10] especially when OTS (Off The Shelf) components are used. Instead of finding defects in the source code, component behavior has to be observed and conclusions have to be made from the observations. The approach for identifying faults in component based software systems is essentially the classic scientific method of observation, hypothesis, prediction, experiment and result [10]. Based on the observed result a conclusion is made if the hypothesis is correct or not. To be able to make observations when the source code not is available other means to get visibility must be used. Four common techniques can be used to gain visibility into OTS-components namely probing, snooping, spoofing and static program analysis [10] 6 Summary The success of component based software technology is dependent on the fact that the effort needed to build component based software systems can be decreased significantly compared to traditional custom software development. Verification and validation has always been major activities in software development and if at least the verification effort can be decreased, a lot is gained. But that requires, among other things, that the components used has the right functionality and quality and are well documented. Developing software components that should be reused, and maybe also commercial, requires a high focus on software quality. In mature software development organizations high quality can be ensured by means of an appropriate defined development process and appropriate methods and tools, that is defect prevention. High quality can also be ensured by means of thorough verification and validation, that is defect identification. The quality of the component should be certified in a, for the component purchasers, trusted way. There are two main techniques to identify defects in software, inspection and test. Inspections can be done, on all software work products such as documents, models and source code. Tests can only be done on executable code. Inspections can be more efficient and effective then tests as more faults can be found per session and the faults can be identified earlier in the development process. Specifications, defining the correct structure and behavior of the software, are needed to support verification and validation so that defects can be identified. The only thing new regarding verification and validation when developing software components, compared to custom software development, is the issue of proofing, or certifying, the software functionality and quality. The verification and validation activities when developing component based software systems differ more, especially if the components used are of poor quality, where the verification of the software can be a very difficult task.
9 Chapter References [1] Clemens Szyperski, Component Software Beyond Object-Oriented Programming, ISBN , Addison-Wesley, 1998 [2] CMU/SEI-2000-TR-008, Volume II: Technical Concepts of Component-Based Software Engineering, Software Engineering Institute, May 2000 [3] 7CMU/SEI-2000-TR-028, CMMI SM for Systems Engineering/Software Engineering, Version 1.02, Software Engineering Institute, November 2000 [4] Ian Sommerville, Software Engineering 6th Edition, ISBN X, Addison- Wesley, 2001 [5] Jacobson, Booch, Rambaugh. The Unified Software Development Process. ISBN , Addison-Wesley, 1999 [6] James A. Whittaker. What is Software Testing? And Why Is It So Hard? IEEE Software, January/February 2000 [7] Jeffery M. Voas, Certifying Off-the-Shelf Software Components. IEEE Computer, June [8] Jeffery M. Voas, Will the Real Operational Profile Please Stand Up? IEEE Software, March/April 2000 [9] Kent Beck. Extreme Programming Explained. ISBN , Addison-Wesley, 2000 [10] Wallnau, Hissam, Seacord. Building Systems from Commercial Components. ISBN , Addison-Wesley, 2001
Software Engineering. Software Processes. Based on Software Engineering, 7 th Edition by Ian Sommerville
Software Engineering Software Processes Based on Software Engineering, 7 th Edition by Ian Sommerville Objectives To introduce software process models To describe three generic process models and when
Module 10. Coding and Testing. Version 2 CSE IIT, Kharagpur
Module 10 Coding and Testing Lesson 23 Code Review Specific Instructional Objectives At the end of this lesson the student would be able to: Identify the necessity of coding standards. Differentiate between
IT3205: Fundamentals of Software Engineering (Compulsory)
INTRODUCTION : Fundamentals of Software Engineering (Compulsory) This course is designed to provide the students with the basic competencies required to identify requirements, document the system design
Information Technology Engineers Examination. Information Security Specialist Examination. (Level 4) Syllabus
Information Technology Engineers Examination Information Security Specialist Examination (Level 4) Syllabus Details of Knowledge and Skills Required for the Information Technology Engineers Examination
Software Engineering
1 Software Engineering Lecture 2: Software Life Cycles Stefan Hallerstede Århus School of Engineering 25 August 2011 2 Contents Naive Software Development Code & Fix Towards A Software Process Software
Software Engineering Reference Framework
Software Engineering Reference Framework Michel Chaudron, Jan Friso Groote, Kees van Hee, Kees Hemerik, Lou Somers, Tom Verhoeff. Department of Mathematics and Computer Science Eindhoven University of
Basic Testing Concepts and Terminology
T-76.5613 Software Testing and Quality Assurance Lecture 2, 13.9.2006 Basic Testing Concepts and Terminology Juha Itkonen SoberIT Contents Realities and principles of Testing terminology and basic concepts
Software Engineering Introduction & Background. Complaints. General Problems. Department of Computer Science Kent State University
Software Engineering Introduction & Background Department of Computer Science Kent State University Complaints Software production is often done by amateurs Software development is done by tinkering or
A SYSTEMATIC APPROACH FOR COMPONENT-BASED SOFTWARE DEVELOPMENT
A SYSTEMATIC APPROACH FOR COMPONENT-BASED SOFTWARE DEVELOPMENT Cléver Ricardo Guareis de Farias, Marten van Sinderen and Luís Ferreira Pires Centre for Telematics and Information Technology (CTIT) PO Box
Quality Management. Lecture 12 Software quality management
Quality Management Lecture 12 Software quality management doc.dr.sc. Marko Jurčević prof.dr.sc. Roman Malarić University of Zagreb Faculty of Electrical Engineering and Computing Department of Fundamentals
Introduction to Software Engineering. 8. Software Quality
Introduction to Software Engineering 8. Software Quality Roadmap > What is quality? > Quality Attributes > Quality Assurance: Planning and Reviewing > Quality System and Standards 2 Sources > Software
CS 1632 SOFTWARE QUALITY ASSURANCE. 2 Marks. Sample Questions and Answers
CS 1632 SOFTWARE QUALITY ASSURANCE 2 Marks Sample Questions and Answers 1. Define quality. Quality is the degree of goodness of a product or service or perceived by the customer. Quality concept is the
Component-based Development Process and Component Lifecycle Ivica Crnkovic 1, Stig Larsson 2, Michel Chaudron 3
Component-based Development Process and Component Lifecycle Ivica Crnkovic 1, Stig Larsson 2, Michel Chaudron 3 1 Mälardalen University, Västerås, Sweden, [email protected] 2 ABB Corporate Research,
TRADITIONAL VS MODERN SOFTWARE ENGINEERING MODELS: A REVIEW
Year 2014, Vol. 1, issue 1, pp. 49-56 Available online at: http://journal.iecuniversity.com TRADITIONAL VS MODERN SOFTWARE ENGINEERING MODELS: A REVIEW Singh RANDEEP a*, Rathee AMIT b a* Department of
Software Engineering/Courses Description Introduction to Software Engineering Credit Hours: 3 Prerequisite: 0306211(Computer Programming 2).
0305203 0305280 0305301 0305302 Software Engineering/Courses Description Introduction to Software Engineering Prerequisite: 0306211(Computer Programming 2). This course introduces students to the problems
Software Engineering for Software-Intensive Systems: III The Development Life Cycle
Software Engineering for Software-Intensive Systems: III The Development Life Cycle Assistant Professor Dr. Room E 3.165 Tel. 60-3321 Email: [email protected] Outline I Introduction II Foundations III The Development
Outline. III The Development Life Cycle. Characteristics of Software Development Methodologies. The Prototyping Process
Software Engineering for Software-tensive Systems: Assistant Professor Dr. Room E 3.165 Tel. 60-3321 Email: [email protected] line I troduction II Foundations IV Requirements V Analysis & Design VI Implementation
CS 389 Software Engineering. Lecture 2 Chapter 2 Software Processes. Adapted from: Chap 1. Sommerville 9 th ed. Chap 1. Pressman 6 th ed.
CS 389 Software Engineering Lecture 2 Chapter 2 Software Processes Adapted from: Chap 1. Sommerville 9 th ed. Chap 1. Pressman 6 th ed. Topics covered Software process models Process activities Coping
IT3203 Fundamentals of Software Engineering (Compulsory) BIT 2 nd YEAR SEMESTER 3
Fundamentals of Software Engineering (Compulsory) BIT 2 nd YEAR SEMESTER 3 INTRODUCTION This course is designed to provide the students with the basic competencies required to identify requirements, document
A Process for ATLAS Software Development
Atlas Software Quality Control Group A Process for ATLAS Software Development Authors : Atlas Quality Control Group M. Asai, D. Barberis (chairman), M. Bosman, R. Jones, J.-F. Laporte, M. Stavrianakou
To introduce software process models To describe three generic process models and when they may be used
Software Processes Objectives To introduce software process models To describe three generic process models and when they may be used To describe outline process models for requirements engineering, software
Moving from ISO9000 to the Higher Levels of the Capability Maturity Model (CMM)
Moving from ISO9000 to the Higher Levels of the Capability Maturity Model (CMM) Pankaj Jalote 1 Infosys Technologies Ltd. Bangalore 561 229 Fax: +91-512-590725/590413 [email protected], [email protected]
How To Understand Software Engineering
PESIT Bangalore South Campus Department of MCA SOFTWARE ENGINEERING 1. GENERAL INFORMATION Academic Year: JULY-NOV 2015 Semester(s):III Title Code Duration (hrs) SOFTWARE ENGINEERING 13MCA33 Lectures 52Hrs
Virtual Platforms Addressing challenges in telecom product development
white paper Virtual Platforms Addressing challenges in telecom product development This page is intentionally left blank. EXECUTIVE SUMMARY Telecom Equipment Manufacturers (TEMs) are currently facing numerous
7 Component-based Development Process and Component Lifecycle
7 Component-based Development Process and Component Lifecycle The process of component and component-based system development differs in many significant ways from the classical development process of
Software Processes. The software process. Generic software process models. Waterfall model. Waterfall model phases
Software Processes CSC 221 Introduction to Software Engineering software processes extract from Sommerville s chapter 3 slides Alan Dix Coherent sets of activities for specifying, designing, implementing
Standard Glossary of Terms Used in Software Testing. Version 3.01
Standard Glossary of Terms Used in Software Testing Version 3.01 Terms Used in the Foundation Level Syllabus International Software Testing Qualifications Board Copyright International Software Testing
V. Phani Krishna et al, / (IJCSIT) International Journal of Computer Science and Information Technologies, Vol. 2 (6), 2011, 2915-2919
Software Quality Assurance in CMM and XP- A Comparative Study CH.V. Phani Krishna and Dr. K.Rajasekhara Rao CSE Department, KL University, Guntur dt., India. Abstract Software Quality Assurance is a planned
I219 Software Design Methodology
I219 Software Design Methodology JAIST Master s Program Fall 2014 Nguyen Van Vu [email protected] Topics Course Introduction Objectives and Scope Evaluation Policies Content and Schedule Basic Concepts
Introduction to Automated Testing
Introduction to Automated Testing What is Software testing? Examination of a software unit, several integrated software units or an entire software package by running it. execution based on test cases
Software Testing Interview Questions
Software Testing Interview Questions 1. What s the Software Testing? A set of activities conducted with the intent of finding errors in software. 2.What is Acceptance Testing? Testing conducted to enable
Component Based Development in Software Engineering
Component Based Development in Software Engineering Amandeep Bakshi, Rupinder Singh Abstract--In today s world, Component Based development is an active research area for more than a decade in software
Chapter 8 Software Testing
Chapter 8 Software Testing Summary 1 Topics covered Development testing Test-driven development Release testing User testing 2 Program testing Testing is intended to show that a program does what it is
Implementation of ANSI/AAMI/IEC 62304 Medical Device Software Lifecycle Processes.
Implementation of ANSI/AAMI/IEC 62304 Medical Device Software Lifecycle Processes.. www.pharmout.net Page 1 of 15 Version-02 1. Scope 1.1. Purpose This paper reviews the implementation of the ANSI/AAMI/IEC
Karunya University Dept. of Information Technology
PART A Questions 1. Mention any two software process models. 2. Define risk management. 3. What is a module? 4. What do you mean by requirement process? 5. Define integration testing. 6. State the main
Software Engineering for LabVIEW Applications. Elijah Kerry LabVIEW Product Manager
Software Engineering for LabVIEW Applications Elijah Kerry LabVIEW Product Manager 1 Ensuring Software Quality and Reliability Goals 1. Deliver a working product 2. Prove it works right 3. Mitigate risk
3C05: Unified Software Development Process
3C05: Unified Software Development Process 1 Unit 5: Unified Software Development Process Objectives: Introduce the main concepts of iterative and incremental development Discuss the main USDP phases 2
Design with Reuse. Building software from reusable components. Ian Sommerville 2000 Software Engineering, 6th edition. Chapter 14 Slide 1
Design with Reuse Building software from reusable components. Ian Sommerville 2000 Software Engineering, 6th edition. Chapter 14 Slide 1 Objectives To explain the benefits of software reuse and some reuse
Software Engineering. Software Testing. Based on Software Engineering, 7 th Edition by Ian Sommerville
Software Engineering Software Testing Based on Software Engineering, 7 th Edition by Ian Sommerville Objectives To discuss the distinctions between validation testing and defect t testing To describe the
Software Engineering Question Bank
Software Engineering Question Bank 1) What is Software Development Life Cycle? (SDLC) System Development Life Cycle (SDLC) is the overall process of developing information systems through a multi-step
Software Quality. Software Quality Assurance and Software Reuse. Three Important Points. Quality Factors
Software Quality Software Quality Assurance and Software Reuse Peter Lo Conformance to explicitly-stated functional and performance requirements, explicitly-documented development standards, and implicit
Software testing. Objectives
Software testing cmsc435-1 Objectives To discuss the distinctions between validation testing and defect testing To describe the principles of system and component testing To describe strategies for generating
What CMMI Cannot Give You: Good Software
What CMMI Cannot Give You: Good Software Ivar Jacobson [email protected] [email protected] Objective To understand what CMM/CMMI is and what it is not To demonstrate how the unified process helps you
CHAPTER 7 Software Configuration Management
CHAPTER 7 Software Configuration Management ACRONYMS CCB CM FCA MTBF PCA SCCB SCI SCM SCMP SCR SCSA SEI/CMMI SQA SRS USNRC INTRODUCTION Configuration Control Board Configuration Management Functional Configuration
Surveying and evaluating tools for managing processes for software intensive systems
Master Thesis in Software Engineering 30 Credits, Advanced Level Surveying and evaluating tools for managing processes for software intensive systems Anuradha Suryadevara IDT Mälardalen University, ABB
Software Quality Development and Assurance in RUP, MSF and XP - A Comparative Study
Software Quality Development and Assurance in RUP, MSF and XP - A Comparative Study Wolfgang Zuser Vienna University of Technology [email protected] Stefan Heil Capgemini Consulting Austria
Clarifying a vision on certification of MDA tools
SCIENTIFIC PAPERS, UNIVERSITY OF LATVIA, 2010. Vol. 757 COMPUTER SCIENCE AND INFORMATION TECHNOLOGIES 23 29 P. Clarifying a vision on certification of MDA tools Antons Cernickins Riga Technical University,
JOURNAL OF OBJECT TECHNOLOGY
JOURNAL OF OBJECT TECHNOLOGY Online at http://www.jot.fm. Published by ETH Zurich, Chair of Software Engineering JOT, 2007 Vol. 6, No. 1, January-February 2007 CM Configuration Change Management John D.
Minimizing code defects to improve software quality and lower development costs.
Development solutions White paper October 2008 Minimizing code defects to improve software quality and lower development costs. IBM Rational Software Analyzer and IBM Rational PurifyPlus software Kari
How To Write Software
1 Medical Device Software - Software Life Cycle Processes IEC 62304 2 Credits John F. Murray Software Compliance Expert U.S. Food and Drug Administration Marcie R. Williams Medical Device Fellow Ph.D.
Software Engineering. Software Engineering. Component-Based. Based on Software Engineering, 7 th Edition by Ian Sommerville
Software Engineering Component-Based Software Engineering Based on Software Engineering, 7 th Edition by Ian Sommerville Objectives To explain that CBSE is concerned with developing standardised components
Software Development Process Models and their Impacts on Requirements Engineering Organizational Requirements Engineering
Software Development Process Models and their Impacts on Requirements Engineering Organizational Requirements Engineering Prof. Dr. Armin B. Cremers Sascha Alda Overview Phases during Software Development
Peter Mileff PhD SOFTWARE ENGINEERING. The Basics of Software Engineering. University of Miskolc Department of Information Technology
Peter Mileff PhD SOFTWARE ENGINEERING The Basics of Software Engineering University of Miskolc Department of Information Technology Introduction Péter Mileff - Department of Information Engineering Room
Lecture 8 About Quality and Quality Management Systems
Lecture 8 About Quality and Quality Management Systems Kari Systä 10.03.2014 10.03.2014 TIE-21100/21106; K.Systä 1 Content of today s lecture Two weeks ago we discussed about testing and inspections, that
What do you think? Definitions of Quality
What do you think? What is your definition of Quality? Would you recognise good quality bad quality Does quality simple apply to a products or does it apply to services as well? Does any company epitomise
The most suitable system methodology for the proposed system is drawn out.
3.0 Methodology 3.1 Introduction In this chapter, five software development life cycle models are compared and discussed briefly. The most suitable system methodology for the proposed system is drawn out.
Chapter 24 - Quality Management. Lecture 1. Chapter 24 Quality management
Chapter 24 - Quality Management Lecture 1 1 Topics covered Software quality Software standards Reviews and inspections Software measurement and metrics 2 Software quality management Concerned with ensuring
IEEE ComputerSociety 1 Software and Systems Engineering Vocabulary
IEEE ComputerSociety 1 Software and Systems test item. (1) system or software item that is an object of testing (IEEE 829-2008 IEEE Standard for Software and System Test Documentation, 3.1.48) (2) work
Chapter 13: Program Development and Programming Languages
15 th Edition Understanding Computers Today and Tomorrow Comprehensive Chapter 13: Program Development and Programming Languages Deborah Morley Charles S. Parker Copyright 2015 Cengage Learning Learning
IRA 423/08. Designing the SRT control software: Notes to the UML schemes. Andrea Orlati 1 Simona Righini 2
Designing the SRT control software: Notes to the UML schemes Andrea Orlati 1 Simona Righini 2 1 - I.N.A.F. Istituto di Radioastronomia. 2 Dip. Astronomia - Università degli Studi di Bologna. Dicembre 2008
Cisco Change Management: Best Practices White Paper
Table of Contents Change Management: Best Practices White Paper...1 Introduction...1 Critical Steps for Creating a Change Management Process...1 Planning for Change...1 Managing Change...1 High Level Process
How To Improve Software Quality
Software Quality and Standards Dr. James A. Bednar [email protected] http://homepages.inf.ed.ac.uk/jbednar Dr. David Robertson [email protected] http://www.inf.ed.ac.uk/ssp/members/dave.htm SEOC2 Spring
How CMMI contributes to Software Testing
How CMMI contributes to Software Testing Dr. Uwe Hehn method park Software AG [email protected] Contents 1. Motivation for S/W Quality Models 2. Why Testers should have some knowledge of Quality Models
What is Automotive Software Engineering? What is Automotive Software Engineering? What is Automotive Software Engineering?
Process models: Capability Maturity Model Integration (CMMI) Software Process Improvement and Capability Determination (SPICE) V-Model Standards: MISRA-C standard AUTOSAR Configuration management Product
Compliance Response Edition 07/2009. SIMATIC WinCC V7.0 Compliance Response Electronic Records / Electronic Signatures. simatic wincc DOKUMENTATION
Compliance Response Edition 07/2009 SIMATIC WinCC V7.0 Compliance Response Electronic Records / Electronic Signatures simatic wincc DOKUMENTATION Compliance Response Electronic Records / Electronic Signatures
What is a life cycle model?
What is a life cycle model? Framework under which a software product is going to be developed. Defines the phases that the product under development will go through. Identifies activities involved in each
Automated Module Testing of Embedded Software Systems
Automated Module Testing of Embedded Software Systems Master s Thesis Fredrik Olsson Henrik Lundberg Supervisors Thomas Thelin, LTH Michael Rosenberg, EMP Nicklas Olofsson, EMP II Abstract When designing
Software Testing. Knowledge Base. Rajat Kumar Bal. Introduction
Software Testing Rajat Kumar Bal Introduction In India itself, Software industry growth has been phenomenal. IT field has enormously grown in the past 50 years. IT industry in India is expected to touch
Continuous Integration, Delivery and Deployment. Eero Laukkanen T-76.5613 - Software Testing and Quality Assurance P 20.11.2015
Continuous Integration, Delivery and Deployment Eero Laukkanen T-76.5613 - Software Testing and Quality Assurance P 20.11.2015 System Integration In engineering, system integration is defined as the process
Software Process for QA
Software Process for QA Basic approaches & alternatives CIS 610, W98 / M Young 1/7/98 1 This introduction and overview is intended to provide some basic background on software process (sometimes called
An Agile Formal Development Methodology
An Agile Formal Development Methodology George Eleftherakis 1 and Anthony J. Cowling 2 1 Computer Science Department City Liberal Studies Affiliated College of the University of Sheffield 13 Tsimiski Str.,
Procedure for Assessment of System and Software
Doc. No: STQC IT/ Assessment/ 01, Version 1.0 Procedure for Assessment of System and Software May, 2014 STQC - IT Services STQC Directorate, Department of Electronics and Information Technology, Ministry
Software Quality and Assurance in Waterfall model and XP - A Comparative Study
Software Quality and Assurance in Waterfall model and XP - A Comparative Study Dr. Sana a Jawdat Khalaf [email protected] Dr. Mohamed Noor Al-Jedaiah [email protected] Abstract: -Dealing with
BY STEVE BROWN, CADENCE DESIGN SYSTEMS AND MICHEL GENARD, VIRTUTECH
WHITE PAPER METRIC-DRIVEN VERIFICATION ENSURES SOFTWARE DEVELOPMENT QUALITY BY STEVE BROWN, CADENCE DESIGN SYSTEMS AND MICHEL GENARD, VIRTUTECH INTRODUCTION The complexity of electronic systems is rapidly
Chapter 3 Chapter 3 Service-Oriented Computing and SOA Lecture Note
Chapter 3 Chapter 3 Service-Oriented Computing and SOA Lecture Note Text book of CPET 545 Service-Oriented Architecture and Enterprise Application: SOA Principles of Service Design, by Thomas Erl, ISBN
Software Engineering Compiled By: Roshani Ghimire Page 1
Unit 7: Metric for Process and Product 7.1 Software Measurement Measurement is the process by which numbers or symbols are assigned to the attributes of entities in the real world in such a way as to define
Umbrella: A New Component-Based Software Development Model
2009 International Conference on Computer Engineering and Applications IPCSIT vol.2 (2011) (2011) IACSIT Press, Singapore Umbrella: A New Component-Based Software Development Model Anurag Dixit and P.C.
Plan-Driven Methodologies
Plan-Driven Methodologies The traditional way to develop software Based on system engineering and quality disciplines (process improvement) Standards developed from DoD & industry to make process fit a
Software Engineering UNIT -1 OVERVIEW
UNIT -1 OVERVIEW The economies of ALL developed nations are dependent on software. More and more systems are software controlled. Software engineering is concerned with theories, methods and tools for
Project Risk Management: IV&V as Insurance for Project Success
Project Risk Management: IV&V as Insurance for Project Success Introduction Software development projects can be expensive and risky: Ever more complex mission-critical requirements lead to increasingly
R214 SPECIFIC REQUIREMENTS: INFORMATION TECHNOLOGY TESTING LABORATORY ACCREDITATION PROGRAM
The American Association for Laboratory Accreditation Document Revised: R214: Specific Requirements: Information Technology Testing Laboratory Accreditation July 13, 2010 Program Page 1 of 26 R214 SPECIFIC
QUALITY ASSURANCE IN EXTREME PROGRAMMING Plamen Balkanski
International Journal "Information Theories & Applications" Vol.10 113 QUALITY ASSURANCE IN EXTREME PROGRAMMING Plamen Balkanski Abstract: Our previous research about possible quality improvements in Extreme
Basic Trends of Modern Software Development
DITF LDI Lietišķo datorsistēmu programmatūras profesora grupa e-business Solutions Basic Trends of Modern Software Development 2 3 Software Engineering FAQ What is software engineering? An engineering
Testing Introduction. IEEE Definitions
Testing Introduction IEEE Definitions Software testing is the process of analyzing a software item to detect the differences between existing and required conditions (that is, bugs) and to evaluate the
Effective Methods for Software and Systems Integration
Effective Methods for Software and Systems Integration Boyd L. Summers CRC Press Taylor & Francis Group 6000 Broken Sound Parkway NW, Suite 300 Boca Raton, FL 33487-2742 CRC Press is an imprint of Taylor
Declaration of Conformity 21 CFR Part 11 SIMATIC WinCC flexible 2007
Declaration of Conformity 21 CFR Part 11 SIMATIC WinCC flexible 2007 SIEMENS AG Industry Sector Industry Automation D-76181 Karlsruhe, Federal Republic of Germany E-mail: [email protected] Fax: +49
SOFTWARE QUALITY & SYSTEMS ENGINEERING PROGRAM. Quality Assurance Checklist
SOFTWARE QUALITY & SYSTEMS ENGINEERING PROGRAM Quality Assurance Checklist The following checklist is intended to provide system owners, project managers, and other information systems development and
A Review of an MVC Framework based Software Development
, pp. 213-220 http://dx.doi.org/10.14257/ijseia.2014.8.10.19 A Review of an MVC Framework based Software Development Ronnie D. Caytiles and Sunguk Lee * Department of Multimedia Engineering, Hannam University
Standard Glossary of Terms Used in Software Testing. Version 3.01
Standard Glossary of Terms Used in Software Testing Version 3.01 Terms Used in the Advanced Level - Technical Test Analyst Syllabus International Software Testing Qualifications Board Copyright International
Advancements in the V-Model
Advancements in the V-Model Sonali Mathur Asst. Professor, CSE Dept. ABES Institute of Technology Ghaziabad, U.P-201009 Shaily Malik Lecturer, CSE Dept. Maharaja Surajmal Institute of Tech. Janakpuri,
Testing of safety-critical software some principles
1(60) Testing of safety-critical software some principles Emerging Trends in Software Testing: autumn 2012 Matti Vuori, Tampere University of Technology 27.11.2012 Contents 1/4 Topics of this lecture 6
Use software to define silicon p. 15
April 2008 Use software to define silicon p. 15 >> Domain-specific modeling p.20 >> Efficient CRC calculation p.24 >> Linux development tools p.28 >> Verification enters the atomic age p.33 >> Advantages
Knowledge-based Approach in Information Systems Life Cycle and Information Systems Architecture
5 th Slovakian-Hungarian Joint Symposium on Applied Machine Intelligence and Informatics January 25-26, 2007 Poprad, Slovakia Knowledge-based Approach in Information Systems Life Cycle and Information
Testing and Inspecting to Ensure High Quality
Testing and Inspecting to Ensure High Quality Basic definitions A failure is an unacceptable behaviour exhibited by a system The frequency of failures measures the reliability An important design objective
