Vector Software W H I T E P A P E R. Using VectorCAST for Software Verification and Validation of Railway Applications

Size: px
Start display at page:

Download "Vector Software W H I T E P A P E R. Using VectorCAST for Software Verification and Validation of Railway Applications"

Transcription

1 Vector Software W H I T E P A P E R Using VectorCAST for Software Verification and Validation of Railway Applications Introduction This document is intended to serve as a reference for the usage of VectorCAST products with the European Standard EN (EN 50128: Software for railway control and protection systems", March 2001) itself derived from the IEC standard. It is not intended to be an exhaustive review of the standard, but merely to provide a high-level view of the different testing requirements that can be satisfied using the VectorCAST testing products. For this document, the following legend is used: R Recommended activity HR Highly recommended activity M Mandatory activity VectorCAST during Software Design and Implementation In Clause 10, which is summarized in Table A.4 (page 49), the following activities can be automated by VectorCAST. 13. Library of Trusted/Verified Modules and Components R R R R 14. Functional/Black Box Testing (Design) HR HR M M 15. Performance Testing HR HR HR HR 16. Interface Testing R R R R Table A Library of Trusted/Verified Modules and Components According to B.40 (page 84-85), a library of trusted or verified modules and components avoids the need for software modules and hardware components to be extensively revalidated or redesigned for each new application.

2 Previously tested software modules can certainly be reused but what happens if you want to use a library from a third party vendor that (a) you did not use before (thus have no considerable operational history) and (b) for which you do not have source code available? VectorCAST/C++ can be used to test such libraries (library testing mode, starting with VectorCAST version 5.1) to ensure the data coming out of these libraries and into your software is predictable and correct. Access to the source code is not necessary. 14. Functional/Black Box Testing (Design) Testing during software design and implementation is highly recommended for SIL1 and SIL2, and mandatory at SIL3 and SIL4. Different types of suitable testing strategies are described in Table A.14. The challenge here is that during implementation, engineers are not likely to have access to the entire source code by definition, it is still under development. This supposes a unit or perhaps module-based testing approach. In order to be able to test the software as it gets implemented, software stubs will need to be provided. These are pieces of code that take the place of regular code (for instance, one that has yet to be implemented) so compilation closure can be obtained on a specific file, class or even module. Without compilation closure, the code cannot be successfully tested. VectorCAST/C++ and VectorCAST/Ada are well-suited to this task. Engineers can use these tools to quickly generate a complete test environment stubs included without providing any test code or scripts. All that is needed is the code to be tested and the path to the includes. With this minimal amount of information, both tools can automatically generate all of the test harness code (test driver, stubs ) required for unit or module testing. What would normally take hours of test code development is done in a matter of minutes. The VectorCAST tools for unit and integration testing mentioned above, when used in conjunction with the VectorCAST Runtime Support Package (RSP) for a specific target environment allows test execution on host, simulator, or directly on the target board. All of the facilities to execute tests and capture all test artifacts are controlled by the RSP. 15. Performance Testing According to Table A.17, Avalanche/Stress Testing, Response Timing and Memory Constraints, and Performance Requirements are recommended and highly recommended by EN These can be partially automated using VectorCAST/C++ and VectorCAST/Ada. For instance, the time a function takes to execute can be calculated at the unit test level. Another example of such tests may involve running the same test case several times, perhaps alongside systemlevel threads, which is also possible with VectorCAST. Page2

3 Particular activities that might be undertaken depend on the specifics of your environment. Please contact a Vector Software representative to discuss specific activities you wish to perform. 16. Interface Testing During software design and implementation, it is recommended to test the interface of the code (at the function call level). As explained at B.27 (page 83), several levels of detail or completeness of testing are feasible, but the most important levels would require testing all function parameters using extreme values at once or one at a time (while using normal values for other parameters); test all values for all parameters, including in combination; and through specific test conditions 1. All of these activities can easily be done in VectorCAST/C++ and VectorCAST/Ada. Extreme values can be specified according to functional range or type, and illegal values can also be tested. Combinational testing is also integrated into the product. 1 Testing all parameter values, especially in combination mode, may not be doable for large interfaces, as specified by B.37. VectorCAST during Verification and Testing In Clause 11, which is summarized in Table A.5 (page 50), the following activities can be automated by VectorCAST. 4. Dynamic Analysis and Testing HR HR HR HR 5. Metrics 6. Traceability Matrix R R HR HR 7. Software Error Effect Analysis R R HR HR Table A.5 Even if all of the methods are Recommended or Highly Recommended, a minimum combination for achieving different SIL levels must be done. At SIL 3 or 4, Dynamic Analysis and Testing must be performed, in addition to either: Formal Proof Static Analysis Traceable Matrix and Software Error Effects Analysis Page3

4 It should be noted that VectorCAST provides facilities to perform a Traceability Matrix easily, so the Dynamic Analysis and Testing + Traceability Matrix + Software Error Effect Analysis is doable without the presence of another tool. A combination between Dynamic Analysis and Testing + Static Analysis is also doable if one static tool (for instance, QAC, to which VectorCAST provides a complete integration) is used. 4. Dynamic Analysis and Testing This section covers a variety of tests, many of which can be achieved through a mix of testing on the entire software build (hereafter referred to as system testing ) and unit/module testing. Most of these activities are described in Table A Test Case Execution from Boundary Value Analysis HR HR HR HR 2. Test Case Execution from Error Guessing R R R R 3. Test Case Execution from Error Seeding R R R R 4. Performance Modeling R R HR HR Table A.13 Although these activities can technically be done at the system level, the EN specifies that during the Dynamic Analysis and Testing phase they must be performed at the sub-system level (meaning unit or module level) and must be based on the specifications of the software and/or the specification and the code. VectorCAST can automate all of these techniques, as explained below: 1. Test Case Execution from Boundary Value Analysis These types of tests aim at removing potential software errors at parameter limits or boundaries based on the parameter s type. The best way to achieve this goal is to unit test the software so as to input these limit values directly to functions. Section B.4 mentions special cases that should be duly tested. These include: Setting parameters to zero if they happen to divide another variable within the function Testing blank ASCII characters Testing an empty stack or list element Testing a null matrix Testing a zero table entry Testing the maximum and the minimum values of the type, and potentially the functional limits Testing values outside the boundaries Page4

5 All of these can be done within VectorCAST/C++ and VectorCAST/Ada. In fact, these two tools push the automation even further by providing a way to automatically generate test cases that test all input values to their minimum, maximum and median values. We refer to these tests as MIN-MID-MAX test cases. The minimum and maximum values are determined by testing the range of every type present in the program on the target board or simulator. Thus, using the tool on either the board or on a simulator will guarantee that the range of boundary values tested through automatically generated MIN-MID-MAX tests is valid in your system. These two tools can further test special values as specified above. They can even test other values not directly mentioned, such as Not-A-Number (NAN), positive and negative infinity on floating-point variables, etc. 2. Test Case Execution from Error Guessing According to section B.21, these test cases are based on testing experience and intuition combined with knowledge and curiosity about the system under test. This may lead to the creation of additional test cases to try to cause errors within the software. This activity can be performed at system level, but there is also value performing this at unit level (as required by Table A.13), thus ensuring that the components of the software are as error-proof as possible. In fact, the experience gained testing at implementation time (as introduced earlier in this document) may lead to the creation of additional test cases that can be recycled during testing phases. Even if the environment changes (for example, a new target processor, or with a different code version), test cases can be easily exported from and imported into test environments using VectorCAST unit test tools. The test case data is kept separate from the test harness in a text file, and can be re-imported in test harnesses focusing on specific units all at a click of a button. This not only saves time but also provides assistance during Error Guessing activities. 3. Test Case Execution from Error Seeding The goal of this test strategy is to intentionally provoke errors to see if test cases will identify their presence. If some errors are not detected, additional test cases must be provided. Error Seeding can easily be done at unit level. Although test cases are provided in an intuitive table, a test case in VectorCAST can also be set to (1) input error conditions and, in many cases, (2) confirm that these error conditions were detected. For instance, pointers may be left intentionally null, or exceptions may be intentionally raised to see how the system would cope with such situations. Page5

6 4. Performance Modeling These activities aim at calculating performance, such as processor time, communications bandwidth, storage devices utilization, and so on. VectorCAST tools can be used to inject test vectors for these types of activities, however the calculation of processor time, bandwidth, throughput, etc., must be done with the help of other tools, such as the debugger. An interesting feature here is the capability for VectorCAST to be executed under the control of a debugger, which is available for all supported compiler configurations. 5. Equivalence Classes and Input Partition Testing This strategy aims at testing the software adequately by determining partitions on the input domain necessary to exercise the software. These test cases aim at testing the program sufficiently. They can be based on either software specifications or the internal structure of the program (or both). These tests can obviously be conducted at system testing level, especially if testing high-level requirements. However, engineers may also want to test low-level requirements and/or base some of their partition test cases on the internal structure of the program (as required by table A.13). These last activities become practical when using automated tools like VectorCAST. VectorCAST unit test tools can test ranges of values and lists of values, either in a combination or non-combination mode. Execution of these complex test cases is done with the click of a button. VectorCAST also features a partition test case generator to automatically create additional test cases on a provided domain. 6. Structure-Based Testing This activity aims at compiling a metric called code coverage. Code coverage indicates how much of the application source code was exercised during different testing activities. The EN standard lists a number of code coverage criteria (Section B.58), including Statement, Branch, Compound Conditions, LCSAJ and Entire Path, without specifying which criteria should be used. The standard document also mentions that accomplishing LCSAJ and Entire Path coverage is often infeasible. Our experience working with clients in the industry shows that for that reason, LCSAJ and Entire Path criteria are seldom used Statement, Branch, and Compound Conditions are frequently used, and the combination of these criteria is chosen as a function of the SIL level that is chosen to be satisfied. Page6

7 Statement The goal here is to execute each line of code. This is usually done for all SIL levels. Branches In the case of a line with a branch (for instance, an IF statement), both the FALSE and TRUE value of the branch are tested. This supposes the presence of two test cases per branch. This can often be found in SIL2, SIL3, and SIL4 projects. Compound This refers to MC/DC, or Modified Condition/Decision Coverage, where every sub-condition in a compound branch (for instance; a branch that has many parameters, such as if(a && b c) ) is demonstrated to be able to independently affect the result of the entire branch. This criteria of code coverage requires a minimum of n + 1 test cases, where n = number of sub-conditions in the branch. Thus, it is usually reserved for SIL3 and SIL4. Within VectorCAST, test cases developed to perform other activities (such as demonstrating requirements, testing software boundaries, etc.) can automatically generate code coverage information. Page7

8 Also, when using VectorCAST/Cover while performing system testing (for instance, Probabilistic Testing, an activity described in Table A.5), code coverage can also be generated. The use of VectorCAST/Cover can therefore bring the following benefits: 1. Ensure that the system test undertaken for a particular activity tests a significant part of the code which usually, will not reach 100%. 2. Generate code coverage that can later be combined with code coverage achieved at unit level to achieve 100% code coverage on the software. Although achieving 100% code coverage is doable at unit level only, many clients find it beneficial to do it both at unit and system level, as it usually results in a shorter time to get complete coverage. VectorCAST offers an easy pooling of code coverage data between system, unit, and integration test levels. 3. If all Statement/Branch or MC/DC coverage is done at unit level, VectorCAST/Cover can ensure that during system test all function calls are used at least once, which is considered to be enough to guarantee complete code coverage at system level by standards such as ISO Call coverage is also mentioned by EN in section B.58. VectorCAST offers a uniquely automated code coverage browser which indicates through different colors, which lines of code were covered and which ones were not, which test cases or coverage results covered specific lines of code, and even automatically generate truth tables required for MC/DC coverage. Page8

9 Metrics The goal of these metrics, according to section B.42, is to predict the attributes of programs from properties of the software itself rather than from its development or test history. Both VectorCAST/C++ and VectorCAST/Cover include cyclomatic complexity as part of their standard analysis, which is mentioned by EN For additional metrics from static analysis, VectorCAST is used in conjunction with several different static analysis tools such as QAC (with which VectorCAST has an advanced integration). Traceability Matrix According to section B.69, the objective of Traceability is to ensure that all requirements can be shown to have been properly met and that no untraceable material has been introduced. This includes but is not limited to traceability between software requirements and test cases. VectorCAST/C++ integrates requirements through the VectorCAST/Requirements Gateway module, to third-party tools which function is to maintain software requirements, such as DOORS. Using this integration, users can download and then link specific software requirements to test cases, and then upload that information back to the requirements management system with the status of the test case (PASS/FAIL). This makes the drafting of the traceability matrix much easier. Software Error Effect Analysis (SEEA) Software Error Effect Analysis proposes to detect software errors and enhance software robustness as well as to evaluate the amount of validation needed by different software components. The VectorCAST unit test tools play a role here as test vector generator, which makes it easy to draw up and test what-if scenarios quickly during SEEA. Additional Considerations All of the testing described can be done on host, simulator, or directly on a target board. For more accurate results, Vector Software recommends these tests be performed at least on an appropriate simulator. They should be performed on the board whenever possible so as to (1) guarantee that the results correspond to the specificities of the environment, and (2) accelerate the testing linked to software/hardware integration testing activities detailed in Table A.6 and explained in the next section of this document. Page9

10 Test activities during software/hardware integration Clause 12 specifies a software/hardware integration phase meant to demonstrate that the software and the hardware interact correctly to perform their intended functions. Table A.6 provides a list of testing activities that should be undertaken during this phase: 1. Functional and Black Box Testing (Design) HR HR HR HR 2. Performance testing R R HR HR Table A.6 For SIL1, SIL2, SIL3, or SIL4, both techniques must be used. 1. Functional and Black Box Testing Functional and Black Box Testing during software/hardware integration may take the following forms (Table A.14): 1. Test Case Execution from Cause Consequence Diagrams HR HR HR HR 2. Prototyping/Animation R R HR HR 3. Boundary Value Analysis HR HR HR HR 4. Equivalence Classes and Input Partition Testing HR HR HR HR 5. Process Simulator R R R R Table A.14 Boundary Value Analysis and Equivalence Classes/Input Partition Testing have been described earlier in this document (during Verification and Testing). If these tests were directly performed on the board, these should not have to be modified at this point in time. If they were done on a host or a simulator, the test cases associated with these activities can be easily reused within VectorCAST unit test tools. At this point in time, additional test cases performed at system testing level may also be advisable. Cause Consequence Diagrams is to model, in a diagrammatic form, the sequence of events that can develop in a system as a consequence of combinations of basic events. Prototyping and Animation check the feasibility of implementing the system against the given constraints. Process Simulation tests the function of a software system without actually putting the complete system in action. Page10

11 All of these additional activities should be performed at system testing level. Of course, for critical system it is advisable to measure how complete these tests are. One way to do this is to measure code coverage during the performance of these system level tests. VectorCAST/Cover can integrate directly to the target board or even complete system and provide that code coverage information. Note that only a set of these activities must be used in order to comply with EN Performance Testing As previously mentioned, the VectorCAST unit testing tools can be used to generate test vectors to partially automate that form of testing, but other tools must be used in conjunction to calculate performance, memory constraints, etc. As with VectorCAST/Cover, both VectorCAST/C++ and VectorCAST/Ada can be used directly on the target board, making both tools suitable for use during software/hardware integration. Software Validation Software validation s objective is to analyze and test the integrated system to ensure compliance with the Software Requirements Specification with particular emphasis on the functional and safety aspects according to the Software Safety integrity level (Clause 13). Activities to be performed during software validation are as follows (Table A.7): 1. Probabilistic Testing R R HR HR 2. Performance Testing HR HR M M 3. Functional and Black-Box Testing HR HR M M 4. Modeling R R R R Table A.7 As it can be seen from the table, Performance Testing and Functional/Black-Box Testing are either highly recommended or mandatory. Both can be automated and/or facilitated by the use of VectorCAST tools, as described in earlier sections of this document. If VectorCAST tools were systematically used in earlier phases, their test cases and output can be easily reused during software validation to run these as regression tests, saving time and resources. Page11

12 Software Maintenance Clause 16 discusses software maintenance and is considered very important by EN The techniques to be used to ensure software maintenance are as follows: 1. Impact Analysis HR HR M M 2. Data Recording and Analysis HR HR M M Impact analysis aims at identifying the effect that a change or an enhancement to a software system will have to other modules in that software system as well as to other systems. This entails re-verifying the changed module, all the affected modules or the complete system, which itself depends on impact analysis. VectorCAST unit testing tools have complete regression testing capabilities. This means that the test cases that were designed for earlier versions of the code can be re-run seamlessly on the new code. If a test case become antiquated (because of a change in the number of parameters or their type for example), then that test case is simply ignored or flagged for review. Thanks to this characteristic of VectorCAST tools, it becomes possible to re-run the whole set of test cases on a given model against updated code in a matter of minutes. This streamlines the amount of maintenance that needs to be done. These tests can also be re-executed overnight, as the regression testing process can be fully automated. Data Recording and Analysis is answered by VectorCAST s ability to append notes to specific test cases. Reporting EN highly recommends the production of a number of documents, such as Software Test Reports, the Software and Hardware Integration Test Report, Software Validation Report and Software Maintenance Records (Table A.1). VectorCAST/C++, VectorCAST/Ada and VectorCAST/Cover can produce a variety of reports based on the whole environment/software or any part of it. These reports can be generated in either Text format or HTML. They can be saved outside VectorCAST, and have been used for years as artifacts to comply with a variety of standards such as EN 50128, DO-178B, IEC 61508, ISO 26262, IEC 62304, etc. Page12

13 Conclusion In conclusion, the VectorCAST/C++, VectorCAST/Ada, VectorCAST/Cover, and VectorCAST/Requirements Gateway products can automate testing and code coverage activities in a way that makes EN much easier to attain. All these tools can export their individual reports in HTML or Text, which have been used successfully in the past to comply with EN and other demanding industry. VectorCAST/RSP is the module that enables the execution of a test harness on simulator or a board. The process is entirely automated, so test cases can be executed individually or as a group by a simple click of a mouse or the command line. The execution itself requires no user input. In addition to these basic tools, Vector Software also provides VectorCAST/Manage to its clients. This tool can federate the results from the other tools so as to provide a bird eye s view to the status of the entire project and generate metrics on the whole project standards. In addition, VectorCAST/Manage expends the reporting capability of the other VectorCAST tools by providing a way to customize reports and export them in a variety of formats, including XML. Successes in Railway Projects VectorCAST tools have been used successfully by a growing list of premier clients, such as ELIN EBG (a division of Siemens), Bombardier Transportation, GE Transportation, The London Tube, Union Switch and Signal (a division of Ansaldo Systems). Our clients appreciate the VectorCAST products automation and flexibility which radically decrease the time spent on complying with the software verification and validation requirements specified in standards such as EN and EN About Vector Software Vector Software, Inc., is the leading independent provider of automated software testing tools for developers of safety critical embedded applications. Vector Software s VectorCAST line of products, automate and manage the complex tasks associated with unit, integration, and system level testing. VectorCAST products support the C, C++, and Ada programming languages. Vector Software, Inc South County Trail, Suite 310 East Greenwich, RI USA T: F: E: info@vectorcast.com Vector Software Golden Cross House 8 Duncannon Street London WC2 N4JF, UK T: F: E: info@vectorcast.com Vector Software St Tӧniser Str. 2A Kempen Germany T: F: E: info@vectorcast.com Page13

Vector Software. Understanding Verification and Validation of software under IEC :2010 W H I T E P A P E R

Vector Software. Understanding Verification and Validation of software under IEC :2010 W H I T E P A P E R Vector Software W H I T E P A P E R Understanding Verification and Validation of software under IEC 61508-3:2010 Abstract This paper is intended to serve as a reference for developers of systems that will

More information

Testing. CxOne Standard

Testing. CxOne Standard Testing CxOne Standard CxStand_Testing.doc November 3, 2002 Advancing the Art and Science of Commercial Software Engineering Contents 1 INTRODUCTION... 1 1.1 OVERVIEW... 1 1.2 GOALS... 1 1.3 BACKGROUND...

More information

9. Verification, Validation, Testing

9. Verification, Validation, Testing 9. Verification, Validation, Testing (a) Basic Notions (b) Dynamic testing. (c) Static analysis. (d) Modelling. (e) Environmental Simulation. (f) Test Strategies. (g) Tool support. (h) Independent Verification

More information

Test Workflow. Michael Fourman Cs2 Software Engineering

Test Workflow. Michael Fourman Cs2 Software Engineering Test Workflow Michael Fourman Introduction Verify the result from implementation by testing each build Plan the tests in each iteration Integration tests for every build within the iteration System tests

More information

Led by the Author Attended by a peer group Varying level of formality Knowledge gathering Defect finding

Led by the Author Attended by a peer group Varying level of formality Knowledge gathering Defect finding Technical Review Walkthrough Review Inspection Review Informal Review A Technical Review is a type of peer review, and is considered to be a formal review type, even though no Managers are expected to

More information

AIRBORNE SOFTWARE VERIFICATION FRAMEWORK AIMED AT AIRWORTHINESS

AIRBORNE SOFTWARE VERIFICATION FRAMEWORK AIMED AT AIRWORTHINESS 27 TH INTERNATIONAL CONGRESS OF THE AERONAUTICAL SCIENCES AIRBORNE SOFTWARE VERIFICATION FRAMEWORK AIMED AT AIRWORTHINESS Yumei Wu*, Bin Liu* *Beihang University Keywords: software airworthiness, software

More information

Development of AUTOSAR Software Components with Model-Based Design

Development of AUTOSAR Software Components with Model-Based Design Development of AUTOSAR Software Components with Model-Based Design Guido Sandmann Automotive Marketing Manager, EMEA The MathWorks Joachim Schlosser Senior Team Leader Application Engineering The MathWorks

More information

Deploying Code Coverage Analysis to Improve Software Quality

Deploying Code Coverage Analysis to Improve Software Quality Deploying Code Coverage Analysis to Improve Software Quality Vector Software, Inc. > Vector Software, Inc. About Vector Software Our Company > Vector Software develops embedded software testing products

More information

Deterministic Modeling and Qualifiable Ada Code Generation for Safety-Critical Projects

Deterministic Modeling and Qualifiable Ada Code Generation for Safety-Critical Projects White Paper Deterministic Modeling and Qualifiable Ada Ada is a time-tested, safe and secure programming language that was specifically designed for large and long-lived applications where safety and security

More information

Implementing IEC 61508:2010 with the LDRA tool suite

Implementing IEC 61508:2010 with the LDRA tool suite Technical White Paper Software Technology Implementing IEC 61508:2010 with the LDRA tool suite Working with the programmable electronic components sector to achieve functional safety www.ldra.com LDRA

More information

ISO Software Compliance with Parasoft: Achieving Functional Safety in the Automotive Industry

ISO Software Compliance with Parasoft: Achieving Functional Safety in the Automotive Industry ISO 26262 Software Compliance with Parasoft: Achieving Functional Safety in the Automotive Industry Some modern automobiles have more lines of code than a jet fighter. Even moderately sophisticated cars

More information

This document describes the overall software development process of microcontroller software during all phases of the Company Name product life cycle.

This document describes the overall software development process of microcontroller software during all phases of the Company Name product life cycle. Maturity Process Owner Check Release Description Valid Name / Department Name / Department Name / Department Detailed procedure for software development Title: Software Development Procedure Purpose: This

More information

Lectures 2 & 3. Software Processes. Software Engineering, COMP201 Slide 1

Lectures 2 & 3. Software Processes. Software Engineering, COMP201 Slide 1 Lectures 2 & 3 Software Processes Software Engineering, COMP201 Slide 1 What is a Process? When we provide a service or create a product we always follow a sequence of steps to accomplish a set of tasks

More information

Assessment of String Tests Strategy for an En Route Air Traffic Control System

Assessment of String Tests Strategy for an En Route Air Traffic Control System Assessment of String Tests Strategy for an En Route Air Traffic Control System Jeff O Leary Federal Aviation Administration 800 Independence Avenue, SW Washington, DC 20591 202-385-8377 Jeff.OLeary@faa.gov

More information

ON THE USE OF BASE CHOICE STRATEGY FOR TESTING INDUSTRIAL CONTROL SOFTWARE

ON THE USE OF BASE CHOICE STRATEGY FOR TESTING INDUSTRIAL CONTROL SOFTWARE School of Innovation Design and Engineering Västerås, Sweden Thesis for the Degree of Bachelor of Science in Computer Science 15.0 credits ON THE USE OF BASE CHOICE STRATEGY FOR TESTING INDUSTRIAL CONTROL

More information

Interlocking Design Automation. The Process

Interlocking Design Automation. The Process Interlocking Design Automation The Process Introduction Imagine an infrastructure manager in need of a new rail control system; maybe a new line is to be built, extended or re-signaled to increase capacity

More information

Introduction to Software Engineering

Introduction to Software Engineering CHAPTER 1 Introduction to Software Engineering Structure 1.1 Introduction Objectives 1.2 Basics of Software Engineering 1.3 Principles of Software Engineering 1.4 Software Characteristics 1.5 Software

More information

Testing 2. Testing: Agenda. for Systems Validation. Testing for Systems Validation CONCEPT HEIDELBERG

Testing 2. Testing: Agenda. for Systems Validation. Testing for Systems Validation CONCEPT HEIDELBERG CONCEPT HEIDELBERG GMP Compliance for January 16-17, 2003 at Istanbul, Turkey Testing for Systems Validation Dr.-Ing. Guenter Generlich guenter@generlich.de Testing 1 Testing: Agenda Techniques Principles

More information

Software Quality Engineering Courses Offered by The Westfall Team

Software Quality Engineering Courses Offered by The Westfall Team Building Skills is a 3-day course that is a subset of our course. The course is designed to provide a fundamental knowledge base and practical skills for anyone interested in implementing or improving

More information

Brochure Services. About. Tools. » Where can we help? » Unit/system testing. » Software verification services» Our approach

Brochure Services. About. Tools. » Where can we help? » Unit/system testing. » Software verification services» Our approach Brochure 2018 About Tools Services» Where can we help?» Unit/system testing» Software verification services» Our approach» Code coverage analysis» Integration» Why choose Rapita?» Timing analysis» Qualification»

More information

Software Quality Engineering Courses Offered by The Westfall Team

Software Quality Engineering Courses Offered by The Westfall Team Courses is a 2-day course that is a subset of our course. The course is designed to provide an overview of techniques and practices. This course starts with an overview of software quality engineering

More information

Single Euro Payments Area

Single Euro Payments Area Single Euro Payments Area Background The Single Euro Payments Area (SEPA) is a payment-integration initiative of the European Union for simplification of bank transfers. As of March 2012, SEPA consists

More information

Achieving ISO Compliance in Silicon (And Beyond?)

Achieving ISO Compliance in Silicon (And Beyond?) Test and Verification Solutions Achieving ISO 26262 Compliance in Silicon (And Beyond?) Mike Bartley, CEO @ TVS mike@testandverification.com 1 Agenda Some background on asuresign ISO26262 And the implication

More information

User guide. SAP umantis EM Interface. Campus Solution 728. SAP umantis EM Interface (V2.7.0)

User guide. SAP umantis EM Interface. Campus Solution 728. SAP umantis EM Interface (V2.7.0) Campus Solution 728 SAP umantis EM Interface (V2.7.0) User guide SAP umantis EM Interface Solution SAP umantis EM Interface Date Monday, March 20, 2017 1:47:22 PM Version 2.7.0 SAP Release from ECC 6.0

More information

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

MSc Software Testing and Maintenance MSc Prófun og viðhald hugbúnaðar MSc Software Testing and Maintenance MSc Prófun og viðhald hugbúnaðar Fyrirlestrar 25 & 26 The SWEBOK Chapter on Software Testing IEEE http://www.swebok.org/ 19/10/2005 Dr Andy Brooks 1 Repeat after Andy:

More information

Using codebeamer to Achieve

Using codebeamer to Achieve Using codebeamer to Achieve IEC 61508 Compliance Using codebeamer to achieve IEC 61508 compliance 1 Using codebeamer to achieve IEC 61508 compliance Using a smart, integrated, cross-functional platform

More information

Safety in the Matrix. Siemens AG All rights reserved.

Safety in the Matrix. Siemens AG All rights reserved. Safety in the Matrix Siemens innovative approach to functional safety helps meet the requirements of the oil and gas industry by maximizing safety while also ensuring high availability and reduced costs

More information

version NDIA CMMI Conf 3.5 SE Tutorial RE - 1

version NDIA CMMI Conf 3.5 SE Tutorial RE - 1 Requirements Engineering SE Tutorial RE - 1 What Are Requirements? Customer s needs, expectations, and measures of effectiveness Items that are necessary, needed, or demanded Implicit or explicit criteria

More information

VectorCAST Presentation AdaEurope 2017 Advanced safety strategies for DO178C certification Massimo Bombino, MSCE

VectorCAST Presentation AdaEurope 2017 Advanced safety strategies for DO178C certification Massimo Bombino, MSCE VectorCAST Presentation AdaEurope 2017 Advanced safety strategies for DO178C certification Massimo Bombino, MSCE Vector Software, Inc. > Software Quality Overview QUALITY HAZARDS IN AVIONICS INDUSTRY 1.

More information

Brochure Services. About. Tools. »» Where can we help? »» Unit/system testing. »» Software verification services»» Our approach

Brochure Services. About. Tools. »» Where can we help? »» Unit/system testing. »» Software verification services»» Our approach Brochure 2017 About Tools Services»» Where can we help?»» Unit/system testing»» Software verification services»» Our approach»» Code coverage analysis»» Integration»» Why choose Rapita?»» Timing analysis»»

More information

QUALITY ASSURANCE PLAN OKLAHOMA DEPARTMENT OF HUMAN SERVICES ENTERPRISE SYSTEM (MOSAIC PROJECT)

QUALITY ASSURANCE PLAN OKLAHOMA DEPARTMENT OF HUMAN SERVICES ENTERPRISE SYSTEM (MOSAIC PROJECT) QUALITY ASSURANCE PLAN OKLAHOMA DEPARTMENT OF HUMAN SERVICES ENTERPRISE SYSTEM (MOSAIC PROJECT) MOSAIC Quality Assurance Plan v04.02 Prepared by: Approved by: QUALITY ASSURANCE PLAN APPROVALS QA/QC Program

More information

Brochure. About. Tools. Services. Where can we help? Our approach Why choose Rapita?

Brochure. About. Tools. Services. Where can we help? Our approach Why choose Rapita? Brochure About Where can we help? Our approach Why choose Rapita? Tools Unit/system testing Structural coverage analysis Timing analysis Scheduling/event tracing Signal-driven software testing Data logging

More information

Brochure Services. About. Tools. »» Where can we help? »» Unit/system testing. »» Software verification services»» Our approach

Brochure Services. About. Tools. »» Where can we help? »» Unit/system testing. »» Software verification services»» Our approach Brochure 2018 About Tools Services»» Where can we help?»» Unit/system testing»» Software verification services»» Our approach»» Structural coverage analysis»» Integration»» Why choose Rapita?»» Timing

More information

2010 Green Hills Software, Inc Slide 1

2010 Green Hills Software, Inc Slide 1 2010 Green Hills Software, Inc Slide 1 !!!"#$%&'()%*+,'-.%&*/"#.0."#."&*.12.##.#*%345,'.*6."#3'* "!!"#$%&'(#)$*+,)-,'#)-./#/'0,120*.'*(#-3#403.0#50*60*07#89# "! :$&2(',#$3#./'#';6',,',#-3,2(.*?#

More information

BCS THE CHARTERED INSTITUTE FOR IT. BCS HIGHER EDUCATION QUALIFICATIONS BCS Level 6 Professional Graduate Diploma in IT SOFTWARE ENGINEERING 2

BCS THE CHARTERED INSTITUTE FOR IT. BCS HIGHER EDUCATION QUALIFICATIONS BCS Level 6 Professional Graduate Diploma in IT SOFTWARE ENGINEERING 2 BCS THE CHARTERED INSTITUTE FOR IT BCS HIGHER EDUCATION QUALIFICATIONS BCS Level 6 Professional Graduate Diploma in IT SOFTWARE ENGINEERING 2 Friday 30 th September 2016 - Morning Answer any THREE questions

More information

Using Auto-Generated Diagnostic Trees for Verification of Operational Procedures in Software-Hardware Systems

Using Auto-Generated Diagnostic Trees for Verification of Operational Procedures in Software-Hardware Systems Using Auto-Generated Diagnostic Trees for Verification of Operational Procedures in Software-Hardware Systems Tolga Kurtoglu Mission Critical Technologies @ NASA Ames Research Center tolga.kurtoglu@nasa.gov

More information

Software verification services for aerospace. »» Unit and integration testing. »» Timing analysis and optimization»» System and acceptance testing

Software verification services for aerospace. »» Unit and integration testing. »» Timing analysis and optimization»» System and acceptance testing Software verification services for aerospace»» Unit and integration testing»» Timing analysis and optimization»» System and acceptance testing»» On-target problem solving»» DO-178C process definition and

More information

Brochure Services. About. Tools. »» Where can we help? »» Unit/system testing. »» Multicore timing services»» Our approach

Brochure Services. About. Tools. »» Where can we help? »» Unit/system testing. »» Multicore timing services»» Our approach Brochure 2018 About Tools Services»» Where can we help?»» Unit/system testing»» Multicore timing services»» Our approach»» Structural coverage analysis»» Software verification services»» Why choose Rapita?»»

More information

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

MSc Software Testing MSc Prófun hugbúnaðar MSc Software Testing MSc Prófun hugbúnaðar Fyrirlestrar 1 & 2 The SWEBOK Chapter on Software Testing IEEE http://www.swebok.org/ 29/08/2007 Dr Andy Brooks 1 Repeat after Andy: software contains faults,

More information

Introduction to Software Engineering

Introduction to Software Engineering Introduction to Software Engineering (CS350) Lecture 16 Jongmoon Baik Software Testing Strategy 2 What is Software Testing? Testing is the process of exercising a program with the specific intent of finding

More information

BluePlant SCADA/HMI Software

BluePlant SCADA/HMI Software BluePlant SCADA/HMI Software www.altus.com.br evolution in automation A new vision of your reality Impressive: high-quality graphics and intuitive configuration Superior: security, redundancy and high

More information

Introduction to Verification and Test of Embedded Systems SE767: Vérification & Test

Introduction to Verification and Test of Embedded Systems SE767: Vérification & Test Introduction to Verification and Test of Embedded Systems SE767: Vérification & Test Ulrich Kühne ulrich.kuhne@telecom-paristech.fr 26/11/2018 Objectives of this Course Understanding the role of test &

More information

KINGS COLLEGE OF ENGINEERING DEPARTMENT OF INFORMATION TECHNOLOGY QUESTION BANK

KINGS COLLEGE OF ENGINEERING DEPARTMENT OF INFORMATION TECHNOLOGY QUESTION BANK KINGS COLLEGE OF ENGINEERING DEPARTMENT OF INFORMATION TECHNOLOGY QUESTION BANK Subject Code & Subject Name: IT1251 Software Engineering and Quality Assurance Year / Sem : II / IV UNIT I SOFTWARE PRODUCT

More information

Software Processes. Ian Sommerville 2004 Software Engineering, 7th edition. Chapter 4 Slide 1

Software Processes. Ian Sommerville 2004 Software Engineering, 7th edition. Chapter 4 Slide 1 Software Processes Ian Sommerville 2004 Software Engineering, 7th edition. Chapter 4 Slide 1 Objectives To introduce software process models To describe three generic process models and when they may be

More information

BASICS OF SOFTWARE TESTING AND QUALITY ASSURANCE. Yvonne Enselman, CTAL

BASICS OF SOFTWARE TESTING AND QUALITY ASSURANCE. Yvonne Enselman, CTAL BASICS OF SOFTWARE TESTING AND QUALITY ASSURANCE Yvonne Enselman, CTAL Information alines with ISTQB Sylabus and Glossary THE TEST PYRAMID Why Testing is necessary What is Testing Seven Testing principles

More information

Automated Black Box Testing Using High Level Abstraction SUMMARY 1 INTRODUCTION. 1.1 Background

Automated Black Box Testing Using High Level Abstraction SUMMARY 1 INTRODUCTION. 1.1 Background Automated Black Box Testing Using High Level Abstraction Dake Song, MIRSE, USA Dr Uli Dobler, FIRSE, Germany Zach Song, EIT, Canada SUMMARY One of the big bottlenecks of modern signalling projects lies

More information

A Cost-effective Methodology for Achieving ISO26262 Software Compliance. Mark Pitchford

A Cost-effective Methodology for Achieving ISO26262 Software Compliance. Mark Pitchford A Cost-effective Methodology for Achieving ISO26262 Software Compliance Mark Pitchford Agenda 1 What are the Challenges? 2 Traceability to Requirements 3 Coding Standards 4 Unit Test and Structural Coverage

More information

The Leading Solution for Method Validation VALIDAT

The Leading Solution for Method Validation VALIDAT The Leading Solution for Method Validation 01 Our Competence for Your Work 02 Overview 02 03 04 05 06 07 Better Overview, Less Costs Page 03 Secure Solution in Certified Quality Page 04 Increased Efficiency

More information

Developing Medical Device Software to be compliant with IEC Amendment 1:2015

Developing Medical Device Software to be compliant with IEC Amendment 1:2015 Developing Medical Device Software to be compliant with IEC 62304- Amendment 1:2015 Background Paraphrasing European Union directive 2007/47/EC of the European parliament of the council 1, a medical device

More information

Technical Integration Testing Requirements. Trusted Digital Identity Framework August 2018, version 1.0

Technical Integration Testing Requirements. Trusted Digital Identity Framework August 2018, version 1.0 Technical Integration Testing Requirements Trusted Digital Identity Framework August 2018, version 1.0 Digital Transformation Agency This work is copyright. Apart from any use as permitted under the Copyright

More information

ISTQB CTFL BH0-010 Exam Practice Question Paper

ISTQB CTFL BH0-010 Exam Practice Question Paper ISTQ TFL H0-010 Exam Practice Question Paper For Software Testing rticlesvisit @ http://softwaretestinghelp.com Join the est Software Testing Training ourse @ http://softwaretestinghelp.org QUESTION 1:

More information

New Solution Deployment: Best Practices White Paper

New Solution Deployment: Best Practices White Paper New Solution Deployment: Best Practices White Paper Document ID: 15113 Contents Introduction High Level Process Flow for Deploying New Solutions Solution Requirements Required Features or Services Performance

More information

Summary. Days til Cutover Considerations Detail Sheet

Summary. Days til Cutover Considerations Detail Sheet Summary Number Task Name 1 Prepare and document Production environment Days til Cutover Considerations Detail Sheet 21 Complete configuration of the hardware and 1. Production Env software for the production

More information

Software Processes. Objectives. Topics covered. The software process. Waterfall model. Generic software process models

Software Processes. Objectives. Topics covered. The software process. Waterfall model. Generic software process models Objectives Software Processes 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

More information

Objectives. The software process. Topics covered. Waterfall model. Generic software process models. Software Processes

Objectives. The software process. Topics covered. Waterfall model. Generic software process models. Software Processes Objectives Software Processes 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

More information

Objectives. Rapid software development. Topics covered. Rapid software development. Requirements. Characteristics of RAD processes

Objectives. Rapid software development. Topics covered. Rapid software development. Requirements. Characteristics of RAD processes Objectives Rapid software development To explain how an iterative, incremental development process leads to faster delivery of more useful software To discuss the essence of agile development methods To

More information

Frontload the design, V&V and certification of software-intensive mechatronic systems by adopting the Digital Twin approach

Frontload the design, V&V and certification of software-intensive mechatronic systems by adopting the Digital Twin approach Frontload the design, V&V and certification of software-intensive mechatronic systems by adopting the Digital Twin approach Mathieu Dutré Business Development & Innovation Manager, MBSE Mathworks EXPO

More information

Topics covered. Software process models Process iteration Process activities The Rational Unified Process Computer-aided software engineering

Topics covered. Software process models Process iteration Process activities The Rational Unified Process Computer-aided software engineering 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

More information

Contractual Aspects of Testing Some Basic Guidelines CONTENTS

Contractual Aspects of Testing Some Basic Guidelines CONTENTS CONTENTS 1 Introduction... 1 1.1 Background... 1 1.2 Structure... 1 1.3 Some Conventions... 1 1.4 Feedback... 1 2 Test Schedule List of Contents... 2 3 Testing Deliverables... 3 4 Coverage Guidance...

More information

Space Product Assurance

Space Product Assurance EUROPEAN COOPERATION FOR SPACE STANDARDIZATION Space Product Assurance Software Product Assurance Secretariat ESA ESTEC Requirements & Standards Division Noordwijk, The Netherlands Published by: Price:

More information

Bugs are costly... Kinds of Quality Assurance

Bugs are costly... Kinds of Quality Assurance Bugs are costly... 1. Types of bugs (What type of bugs have you had in the past?) a. Race conditions and deadlocks b. Library misuse c. Logical errors (off by one, null, buffer overflow) d. Usability e.

More information

Benefits. + + Consistent quality to recipe specification. + + Increase asset utilization and operational efficiency

Benefits. + + Consistent quality to recipe specification. + + Increase asset utilization and operational efficiency Wonderware InBatch Flexible Batch Management Wonderware InBatch software enables sophisticated equipment arbitration and concurrent batch execution capabilities to maximize asset utilization, plant throughput

More information

Instrumentation & Controls. Siemens Power Plant Automation -- SPPA-T3000. Technical Highlights. The New Benchmark in Control.

Instrumentation & Controls. Siemens Power Plant Automation -- SPPA-T3000. Technical Highlights. The New Benchmark in Control. Instrumentation & Controls Siemens Power Plant Automation -- SPPA-T3000 Technical Highlights The New Benchmark in Control Power Generation The new benchmark for Distributed Control Systems Developed to

More information

SPARK. Workflow for Office 365 Workflow for every business. SharePoint Advanced Redesign Kit. ITLAQ Technologies

SPARK. Workflow for Office 365 Workflow for every business. SharePoint Advanced Redesign Kit. ITLAQ Technologies SPARK SharePoint Advanced Redesign Kit Workflow for Office 365 Workflow for every business www.itlaq.com NO LIMITS TO WHAT YOU CAN ACCOMPLISH WITH SPARK WORKFLOW is a no-code business process management

More information

The Verification Company. Software Development and Verification compliance to DO-178C/ED-12C

The Verification Company. Software Development and Verification compliance to DO-178C/ED-12C The Verification Company Software Development and Verification compliance to DO-178C/ED-12C DO-178C/ED-12C in Context Airworthiness Requirements Federal Aviation Regulation (FAR) 25 Airworthiness Standards:

More information

LIMS interfaces. R.D. McDowall. The role of a LIMS MA R C H/ A P RI L

LIMS interfaces. R.D. McDowall. The role of a LIMS MA R C H/ A P RI L 3 8 LIMS interfaces To obtain sufficient tangible benefits from a Laboratory Information Management System (LIMS), the system must be interfaced to analytical instruments inside the laboratory and to other

More information

Testing and Inspections (3C05/D22) Unit 11: Testing and Inspection. What is Testing?

Testing and Inspections (3C05/D22) Unit 11: Testing and Inspection. What is Testing? Testing and Inspections (3C05/D22) Unit 11: Testing and Inspection Objectives To introduce software testing and to develop its role within the software development process. To introduce the use of formal

More information

Product Documentation SAP Business ByDesign August Product Development

Product Documentation SAP Business ByDesign August Product Development Product Documentation PUBLIC Product Development Table Of Contents 1 Product Specifications View... 4 1.1 Product Specifications Quick Guide... 4 1.2 Tasks... 7 Export Business Data Using Microsoft Excel...

More information

ISTQB Advanced Technical Test Analyst Certificate in Software Testing

ISTQB Advanced Technical Test Analyst Certificate in Software Testing ISTQB Advanced Technical Test Analyst Certificate in Software Testing Sample Paper A - 1 Hour Examination This is not a complete exam paper Record your surname/last/family name and initials on the Answer

More information

Accelerating Xilinx All Programmable FPGA and SoC Design Verification with Blue Pearl Software

Accelerating Xilinx All Programmable FPGA and SoC Design Verification with Blue Pearl Software Accelerating Xilinx All Programmable FPGA and SoC Design Verification with Blue Pearl Software Introduction Xilinx All Programmable FPGAs and SoCs are used across multiple markets, powering applications

More information

HP Cloud Maps for rapid provisioning of infrastructure and applications

HP Cloud Maps for rapid provisioning of infrastructure and applications Technical white paper HP Cloud Maps for rapid provisioning of infrastructure and applications Table of contents Executive summary 2 Introduction 2 What is an HP Cloud Map? 3 HP Cloud Map components 3 Enabling

More information

TLM-Driven Design and Verification Time For a Methodology Shift

TLM-Driven Design and Verification Time For a Methodology Shift TLM-Driven Design and Time For a Methodology Shift By Jack Erickson, Cadence Design Systems, Inc. Transaction level modeling (TLM) is gaining favor over register-transfer level () for design components

More information

Title of Slide. Virtual Simulation using QTronic Silver and TestWeaver. Presented by: Robert Ter waarbeek

Title of Slide. Virtual Simulation using QTronic Silver and TestWeaver. Presented by: Robert Ter waarbeek Title of Slide Virtual Simulation using QTronic Silver and TestWeaver Presented by: Robert Ter waarbeek Ron Boudia Claire Chen Kaushik Kannan Kevin Ruybal Tim Cardanha Jeffrey Doering Patrick Kenny Gary

More information

Dependable Technologies For Critical Systems. Software Verification. 22 nd May Technologies Ltd 2011 Critical Software

Dependable Technologies For Critical Systems. Software Verification. 22 nd May Technologies Ltd 2011 Critical Software Dependable Technologies For Critical Systems Software Verification 22 nd May 2012 Dependable Technologies For Critical Systems Agenda When Things Go Wrong... Certifying Software Safety Critical Systems

More information

Industrial IT System 800xA Engineering

Industrial IT System 800xA Engineering Industrial IT System 800xA Engineering Overview Features and Benefits Integrated Engineering Environment Supports the engineering of the entire extended automation system - from field device to plant management

More information

R214 SPECIFIC REQUIREMENTS: INFORMATION TECHNOLOGY TESTING LABORATORY ACCREDITATION PROGRAM

R214 SPECIFIC REQUIREMENTS: INFORMATION TECHNOLOGY TESTING LABORATORY ACCREDITATION PROGRAM A2LA R214 Specific Requirements: Information Technology Testing Laboratory Accreditation Document Revised: 3/5/18 Page 1 of 34 R214 SPECIFIC REQUIREMENTS: INFORMATION TECHNOLOGY TESTING LABORATORY ACCREDITATION

More information

Next Generation Design and Verification Today Requirements-driven Verification Methodology (for Standards Compliance)

Next Generation Design and Verification Today Requirements-driven Verification Methodology (for Standards Compliance) Next Generation Design and Verification Today Requirements-driven Verification Methodology (for Standards Compliance) Mike Bartley, TVS Agenda Motivation - Why Requirements Driven Verification? Introduction

More information

THE INSTITUTE OF CHARTERED ACCOUNTANTS (GHANA) SOLUTION: BUSINESS INFORMATION SYSTEMS, NOVEMBER, 2014

THE INSTITUTE OF CHARTERED ACCOUNTANTS (GHANA) SOLUTION: BUSINESS INFORMATION SYSTEMS, NOVEMBER, 2014 SOLUTION 1 (a) In a centralized system, the data or information processing is done in a central place such as an Information Systems (IS) unit at head office. Data generated at remote locations are sent

More information

Mathcad : Optimize your design and engineering process.

Mathcad : Optimize your design and engineering process. Mathcad : Optimize your design and engineering process. Where engineering excellence begins. ENGINEERING CALCULATION SOFTWARE Solve, document, share and reuse vital engineering calculations. Engineering

More information

Results of the IEC Functional Safety Assessment

Results of the IEC Functional Safety Assessment Results of the IEC 61508 Functional Safety Assessment Project: 3051S Electronic Remote Sensors (ERS ) System Customer: Emerson Automation Solutions (Rosemount, Inc.) Shakopee, MN USA Contract No.: Q16/12-041

More information

Discussion Paper on the Validation of Pharmacovigilance Software provided via SaaS

Discussion Paper on the Validation of Pharmacovigilance Software provided via SaaS Discussion Paper on the Validation of Pharmacovigilance Software provided via SaaS June 2012 K Edmonds Page 1 of 10 Page 2 of 10 Contents 1. Introduction... 4 2. Quality Statement ISO 9001:2015... 4 3.

More information

Requirements elicitation: Finding the Voice of the Customer

Requirements elicitation: Finding the Voice of the Customer Requirements elicitation: Finding the Voice of the Customer Establishing customer requirements for a software system Identify sources of user requirements on your project Identify different classes of

More information

DEPARTMENT OF DEFENSE STANDARD PRACTICE

DEPARTMENT OF DEFENSE STANDARD PRACTICE NOT MEASUREMENT SENSITIVE 5 April 2012 SUPERSEDING 28 January 2008 DEPARTMENT OF DEFENSE STANDARD PRACTICE DOCUMENTATION OF VERIFICATION, VALIDATION, AND ACCREDITATION (VV&A) FOR MODELS AND SIMULATIONS

More information

Towards Systematic Software Reuse in Certifiable Safety-Critical Systems

Towards Systematic Software Reuse in Certifiable Safety-Critical Systems Towards Systematic Software Reuse in Certifiable Safety-Critical Systems Mikael Åkerholm 1,2, Rikard Land 1,2 1 Mälardalen University, School of Innovation, Design and Engineering, Västerås, Sweden 2 CC

More information

A Cost-Effective Model-Based Approach for Developing ISO Compliant Automotive Safety Related Applications

A Cost-Effective Model-Based Approach for Developing ISO Compliant Automotive Safety Related Applications Technical Paper A Cost-Effective Model-Based Approach for Developing ISO 26262 Compliant Automotive Automotive manufacturers and their suppliers increasingly need to follow the objectives of ISO 26262

More information

Research on software systems dependability at the OECD Halden Reactor Project

Research on software systems dependability at the OECD Halden Reactor Project Research on software systems dependability at the OECD Halden Reactor Project SIVERTSEN Terje 1, and ØWRE Fridtjov 2 1. Institute for Energy Technology, OECD Halden Reactor Project, Post Box 173, NO-1751

More information

SOFTWARE DEVELOPMENT STANDARD

SOFTWARE DEVELOPMENT STANDARD SFTWARE DEVELPMENT STANDARD Mar. 23, 2016 Japan Aerospace Exploration Agency The official version of this standard is written in Japanese. This English version is issued for convenience of English speakers.

More information

Can I reduce manual data entry by using an automated information capture system?

Can I reduce manual data entry by using an automated information capture system? Modules Produced by Canon Communications - October 02 TELEform ELITE TELEform Elite includes the following modules: Form Designer Reader/Scan Station Verifier TELEform ENTERPRISE TELEform Enterprise includes

More information

Characteristics of a Robust Process

Characteristics of a Robust Process Characteristics of a Robust Process By Rich Schiesser: In Conjunction with Harris Kern s Enterprise Computing Institute One of the distinctions that separate world-class infrastructures from those that

More information

Applicability of Model-Based Design Quality Metrics to Medical Device Software

Applicability of Model-Based Design Quality Metrics to Medical Device Software Applicability of Model-Based Design Quality Metrics to Medical Device Software Dave Hoadley PhD, MathWorks Paul Jones, Office of Science and Engineering Laboratory, CDRH, FDA May 2017 2017 The MathWorks,

More information

GENERAL PRINCIPLES OF SOFTWARE VALIDATION

GENERAL PRINCIPLES OF SOFTWARE VALIDATION GUIDANCE FOR INDUSTRY GENERAL PRINCIPLES OF SOFTWARE VALIDATION DRAFT GUIDANCE Version 1.1 This guidance is being distributed for comment purposes only. Draft released for comment on: June 9, 1997 Comments

More information

ISTQB-Level1 ASTQB. American Software Testing Qualifications Board Level 1

ISTQB-Level1 ASTQB. American Software Testing Qualifications Board Level 1 ASTQB ISTQB-Level1 American Software Testing Qualifications Board Level 1 Download Full Version : https://killexams.com/pass4sure/exam-detail/istqb-level1 QUESTION: 46 Comparing TMMi and TPI, which is

More information

ISTQB CTFL BH0-010 Exam Practice Question Paper

ISTQB CTFL BH0-010 Exam Practice Question Paper ISTQ TFL H0-010 Exam Practice Question Paper For Software Testing rticlesvisit @ http://softwaretestinghelp.com Join the est Software Testing Training ourse @ http://softwaretestinghelp.org QUESTION 1:

More information

SPARK. Workflow for SharePoint. Workflow for every business. SharePoint Advanced Redesign Kit. ITLAQ Technologies

SPARK. Workflow for SharePoint. Workflow for every business. SharePoint Advanced Redesign Kit. ITLAQ Technologies SPARK SharePoint Advanced Redesign Kit Workflow for SharePoint Workflow for every business www.itlaq.com NO LIMITS TO WHAT YOU CAN ACCOMPLISH WITH SPARK WORKFLOW SPARK Workflow is a business process management

More information

Validation of Calibration Software by the Calibration Facility

Validation of Calibration Software by the Calibration Facility Validation of Calibration Software by the Calibration Facility Patrick Kershaw, Associate Software Engineer Fluke Corporation, P.O. Box 9090 Everett, WA 98206 Abstract Today, in the United States, regulatory

More information

A Model-Based Reference Workflow for the Development of Safety-Critical Software

A Model-Based Reference Workflow for the Development of Safety-Critical Software A Model-Based Reference Workflow for the Development of Safety-Critical Software A. Michael Beine 1 1: dspace GmbH, Rathenaustraße 26, 33102 Paderborn Abstract: Model-based software development is increasingly

More information

Testing Masters Technologies

Testing Masters Technologies 1. How will you receive the project requirements? A. The finalized SRS will be placed in a project repository; we will access it from there 2. What will you do with SRS? A. SRS stands for software requirement

More information

WIND RIVER SIMICS WHEN IT MATTERS, IT RUNS ON WIND RIVER DEVELOP SOFTWARE IN A VIRTUAL ENVIRONMENT

WIND RIVER SIMICS WHEN IT MATTERS, IT RUNS ON WIND RIVER DEVELOP SOFTWARE IN A VIRTUAL ENVIRONMENT AN INTEL COMPANY WIND RIVER SIMICS Electronic systems are becoming increasingly complex, with more hardware, more software, and more connectivity. Current systems are software intensive, often containing

More information

Test Management: Part I. Software Testing: INF3121 / INF4121

Test Management: Part I. Software Testing: INF3121 / INF4121 Test Management: Part I Software Testing: INF3121 / INF4121 Summary: Week 6 Test organisation Independence Tasks of the test leader and testers Test planning and estimation Activities Entry and exit criteria

More information

Saber Automotive Overview

Saber Automotive Overview Datasheet Saber Automotive Overview Overview Hybrid- and electric-vehicle development demand more and more accurate simulation of Automotive systems to achieve quality-, reliabilityand cost-requirements.

More information