Quality Assurance Plan

Size: px
Start display at page:

Download "Quality Assurance Plan"

Transcription

1 Quality Assurance Plan Suunto Training Program Planner Publish date: team IMARA [ee-mah-rah] strong, resolute; traditional Swahili name Failure is not an option, it comes embedded in software - Jerry Krasner, Ph.D. -

2 Changelog Date Author Comments Reviewer Status Ville Initial draft DRAFT Ville Writing document DRAFT Ville Finalizing document Andreas FINAL Ville Small fixes Eric FINAL Contents 1 INTRODUCTION QUALITY ASSURANCE GOALS QUALITY ASSURANCE PRACTICES AND TOOLS LEVELS OF TESTING TESTING PRACTICES QUALITY PRACTICES TESTING TOOLS SUMMARY DEFECT TRACKING RESOURCES AND SCHEDULING DELIVERABLES...11

3 1 Introduction This document describes the planned quality assurance goals, practices, tools, and scheduling for the Suunto Training Program Planner project. This document will be continuously updated during the course of this project. The QA Manager is the main responsible for maintaining this document. The intended audience of this document is presented in Table 1. This document is a part of the requirements for the course T Software Development Project course at Helsinki University of Technology. Table 1 - Intended audience of this document. Group of the readers Customer Project Team System Developers Testers Mentor Reason for reading To get informed on the planned quality assurance practices of the project and verify them To plan, follow, and document the quality assurance process and guidelines of the project To understand and follow the planned quality assurance practices To understand and follow the planned quality assurance practices To evaluate the quality assurance process and give feedback 2 Quality Assurance Goals The quality goals for this project are mostly derived from the non-functional requirements and are of qualitative nature. Many of the risks identified in the project plan have a negative effect on product quality if materialized, thus successful risk management is also crucial for quality. Table 2 Quality goals ID Quality Goal Description Verification QG-1 Functionality QG-2 Usability QG-3 Code quality All the required functionality is implemented The User interface should be intuitive and as easy to use as possible The system suffers from no serious defects and can be regarded to be of production quality - Team verifies that all marked functionalities are implemented - Customer makes the final verification - Team evaluates the UI usability internally - A peer group will evaluate the UI usability - An external focus group might test the usability (organized by the customer) - Customer makes the final verification - The defect tracking system does not have any major/critical defects and not a large amount of smaller ones at the end of the project

4 QG-4 Layout QG-5 Localization The graphical look must be in line with the Suunto brand The system must enable localization (use of the text resources files) - Customer makes the final verification - The system is tested and proven to work with different languages QG-6 Risk management Risks must be successfully managed in order to prevent negative impact on quality - The risk management process has been followed according to plan

5 3 Quality Assurance Practices and Tools 3.1 Levels of Testing We will follow the four levels of testing according to the V-model of software development during this project. Figure 1 illustrates the links between testing and according development levels. In the following chapters, the practices and methods that will be used for quality assurance will be presented and the deployment method will be explained. After that the used environments and software used for testing will be presented. Finally, the methods and practices, as well as the utilized tools will be linked to according test levels of the V-model. Requirements analysis Acceptance Test Design User Acceptance Testing System Design System Test Design System Testing Architecture Design Integration Test Design Integration Testing Module Design Unit Test Design Unit Testing Coding Figure 1 - V-Model of software development (adapted from

6 3.2 Testing Practices Unit testing Course requirements demand a reasonable amount of unit level testing. We want to ensure high quality work throughout the project and proactively prevent unwelcome surprises late into the project. Therefore, unit testing is strongly emphasized throughout the development work. Unit testing will be performed in all the backend layers: The Data Access Layer (DAL), Business Logic Layer (BLL), and Service Access Layer (SAL). All methods in these layers will have at least one corresponding unit test and therefore the test coverage of the backend will be close to 100 percent. It is the responsibility of the developer to write the unit tests needed whenever a method in the backend is added or modified Integration Testing In this project, integration testing means the integration of different parts of Suunto Training Program Planner. Later the system needs to be integrated into the mysuunto portal, but this is not within the scope of this project. Integration testing in this project will be handled by frequent builds of the system System and Acceptance Testing The software should be of production quality at the end of this project, thus System and Acceptance testing are of great importance for this project. Three best practices are deployed in order to ensure successful system and acceptance testing: test-cases, explorative testing, and heuristics Test-cases The course requires a minimum of 50% of implemented functional requirements to be tested based on test-cases. Test cases will be used as a foundation both when testing by hand and also when Selenium tests are deployed through the Robot Framework. Most functional requirements will be tested with either method. When testing by hand, the test cases will be written based on the Activity Diagrams and possible use cases. The QA manager is responsible to oversee that test cases are performed for the planned requirements. The test-cases are written according to the Extended Use-Case Test-Case Design Pattern ( When executing test cases the following steps must be documented in a test log according to the template given at the course homepage ( - input values - steps - expected results - date - tester - test environment (hw, sw, build...) - list of executed test cases with status (passed/failed) - bug IDs Furthermore following practices will be followed when executing test-cases:

7 Boundary value analysis - analyze the most critical input values and focus testing efforts to the most likely fault locations. These are found at boundaries, where a change in input values cause a change from one equivalence class to another equivalence class Equivalence partitioning input values are divided into equivalence classes and testing one value from an equivalence class is representative for the whole class, and thus saves time Explorative testing Explorative testing is encouraged throughout the project. It will be performed more rigorously at the end of each sprint by the customer. Also the peer group will be given the opportunity to exploratory test the software. Session Based Test Management will be organized at the latter part of the project to ensure seamless functionality between software components. For these sessions, test charters must be prepared ( and the exploration log in the test charter must be filled during each session Heuristics Usability and visual requirements will be tested through active involvement of the customer, peer group evaluation, and possibly focus group feedback. 3.3 Quality Practices Also other quality related best practices will be used during the course of this project. Next each are explained more in detail Coding standards The use of coding standards is required by the course. We use a modified version of Dotnet Spider s coding convention. More details are available in the project plan and the team s wiki page Pair programming Especially in the beginning of the project pair programming will be used actively. This is because only few of the developers have former experience in.net and C# and therefore pair programming functions as a useful practice to enable fast learning amongst the developers. Practically pair programming will be arranged during weekly meetings and also at other points of time according to agreement Code reviews According to course requirements code reviews must be applied to at least on one critical component of the system. We will organize code review session as needed during the weekly meetings. This supports the learning goals and helps in forming a general understanding of the system as a whole. The code reviews should also check and point out problems regarding: - Functionality of the code - Performance of the code - Documentation of the code - Bad coding syntax

8 3.3.4 Document reviews The project management team is responsible to review, and when needed update, all documentation at least in the end of each sprint Customer involvement Active customer involvement is a must due to the iterative process of the project. A meeting is scheduled in the beginning of each sprint. Furthermore a weekly status report will be sent to the customer for commenting. At other times, customer contact persons are available by phone and Testing Tools NUnit NUnit is used as the unit test framework. It is applied to the backend layers: DAL, BLL, SAL. Different input values will be used depending on the test case Selenium Selenium will be used for acceptance and system level testing. The extent to which Selenium tests will be applied is still to be defined by the test manager of the customer Robot Framework Robot Framework will be used to run and produce a human readable report of all the Selenium tests JIRA JIRA will be used for defect tracking. Each found defect will be stored and prioritized in JIRA.

9 3.5 Summary Table 3 summarizes the most important quality practices with according testing levels and tools. Table 3 Summary of the testing levels, testing practices, and tools. Testing Level Testing Practices Tools Unit Testing Developers are responsible for writing unit tests NUnit Integration Testing Frequent builds Visual Studio 2008 System Testing Test-cases Selenium Explorative testing Robot Framework Acceptance Testing Test-cases Explorative testing Selenium Robot Framework Heuristics In Table 4 the planned testing and quality practices are linked to according quality goals. The realized effect and amount of use will be updated at the end of each iteration. Table 4 - Summary of QA practices (x = use was planned, 0-3 = realized effect on achieving the goal, green yellow red color = amount of use) Practices QUALITY GOALS QUALITY RISKS Functionality Usability Code quality Layout Localization Risk management R2 R3 R9 Unit testing x x Integration testing System testing Acceptance testing Coding standards Pair programming x x x x x x x x x x x x x x x x x x x x x Code reviews x x x

10 Document reviews x x x Customer involvement x x x x x The quality related risks are derived directly from the risk analysis in the project plan. Following risks directly linked to quality assurance practices were identified: R2 - Communication problems leads to delays and inconsistencies in information sharing. R3 - Poor product quality due to insufficient testing practices. R9 - The team members cannot adapt to the used development tools on time. 4 Defect Tracking Each found defect is marked as a new issue to JIRA. The person who has found the defect is responsible for submitting the defect to JIRA. The type and the priority of the defect are defined by the submitter. We are using two types of defects: Bug a defect that needs fixing. This can be assigned for fixing without consulting the customer. Enhancement when somebody discovers a way of doing something better than planned. An enhancement will not be fixed before discussing the issue with the customer. We are using five levels of priorities offered by JIRA: Blocker Blocks the use of the entire system. It is a number one priority to fix the defect. Critical A large part of the system is inoperable or affected by this defect. Major Severely affects the use of the system. Default priority. Minor A defect that is tolerable to some degree during the use of the system. Trivial Minor cosmetic issues.

11 5 Resources and Scheduling This schedule and the assigned resources will be updated along as the project progresses. Also new tasks will be added along the way. Deadline Task description Responsible Delivery of QA plan QA Manager Peer-programming session Write unit tests Code review session 7.12 Delivery of QA report QA Manager 20.1 Delivery of QA plan QA Manager Write test-cases and Selenium tests Planning of peer group testing Session Based Exploratory Testing 22.2 Delivery of QA report QA Manager 6 Deliverables The course requires the following quality related deliverables: - Quality assurance plan at the beginning of iteration 1 (this document, updated regularly) - Quality report at end of each iteration (see template o Evaluation of QA Practices o Quality Status (including defect report) o Action Points - Iteration demo QA input at the end of each iteration - Other documentation: o Test-cases o Test-case test logs o Test charters

Suunto 2.0 web - Quality Assurance Plan

Suunto 2.0 web - Quality Assurance Plan Suunto 2.0 web - Quality Assurance Plan T-76.4115 Software Development Project: Iteration 2 Quality in a product or service is not what the supplier puts in. It is what the customer gets out and is willing

More information

Quality Assurance Plan

Quality Assurance Plan CloudSizzle : Quality Assurance Plan Quality Assurance Plan General info Changelog 1. Introduction 2. Quality goals and risks 3. Quality Assurance practices 3.1 Testing levels 3.2 Testing - 3.2.1 Test

More information

AGILE SOFTWARE TESTING

AGILE SOFTWARE TESTING AGILE SOFTWARE TESTING Business environments continue to rapidly evolve, leaving many IT organizations struggling to keep up. This need for speed has led to an increased interest in the Agile software

More information

ISTQB Certified Tester. Foundation Level. Sample Exam 1

ISTQB Certified Tester. Foundation Level. Sample Exam 1 ISTQB Certified Tester Foundation Level Version 2015 American Copyright Notice This document may be copied in its entirety, or extracts made, if the source is acknowledged. #1 When test cases are designed

More information

Project Lifecycle Management (PLM)

Project Lifecycle Management (PLM) Project Lifecycle Management (PLM) Process or Tool? Why PLM? Project Definition Project Management NEW REQUEST/ INITIATIVES SUPPORT (Quick fixes) PROJECT (Start Finish) ONGOING WORK (Continuous) ENHANCEMENTS

More information

Terrace Consulting Services

Terrace Consulting Services Terrace Consulting Services Overview: Every project will require some degree of Planning before Implementation can begin. Analysis and Planning are essential in order to confirm requirements, define the

More information

Relative cost of fixing bugs

Relative cost of fixing bugs Code Review Tool Introduction Code review is a systematic examination of source code with an intention to find and fix bugs. Code reviews are primarily done during development phase to improve the quality

More information

Testing and Scrum. Agenda. Fall 2007 Scrum Gathering

Testing and Scrum. Agenda. Fall 2007 Scrum Gathering Testing and Scrum Fall 2007 Scrum Gathering Ralph van Roosmalen Agenda Introduction The Classical Test Approach Organization Test Documentation Test Activities Recruitment Reporting Test Automation Lessons

More information

Good Agile Testing Practices and Traits How does Agile Testing work?

Good Agile Testing Practices and Traits How does Agile Testing work? Agile Testing Best Practices Introduction The testing phase of software development sometimes gets the short shrift from developers and IT managers. Yet testing is the only way to determine whether an

More information

Using Use Cases on Agile Projects

Using Use Cases on Agile Projects Using Use Cases on Agile Projects Ivar Jacobson with Ian Spence Agenda What are agile teams looking for? Cards, conversations, and confirmations Knowing what to do and when it s done Being agile with use

More information

ZenQ Quality Assurance (QA) Process

ZenQ Quality Assurance (QA) Process Success The performance testing helped the client identify and resolve performance bottlenecks which otherwise crippled the business. The ability to support 500 concurrent users was a performance improvement

More information

Measuring ROI of Agile Transformation

Measuring ROI of Agile Transformation Measuring ROI of Agile Transformation Title of the Paper: Measuring Return on Investment (ROI) of Agile Transformation Theme: Strategic & Innovative Practices Portfolio, Programs & Project (PPP) Management

More information

Custom Software Development Approach

Custom Software Development Approach Custom Software Development Approach Our approach to custom software development combines benefits from several standard development process models. We tend to have a well-defined, predictable and highly

More information

Website design & development process

Website design & development process Website design & development process Key stages of the process 9 1 Support, development and maintenance Competitor and audience analysis 8 Training IMPROVE THINK Wireframe and prototype (UX) 2 7 User testing

More information

Working of Call Center. Sanad centers, Investors, Regional Offices, MOCI staff can contact the Support Call Center for their queries and issues

Working of Call Center. Sanad centers, Investors, Regional Offices, MOCI staff can contact the Support Call Center for their queries and issues Customer Support Channels Multiple channels available to the public: Support phone (working hours) E-mail (24/7) Social media (Twitter, Facebook) Self service desk in Muscat and Salalah front offices 2

More information

ALM2013VS_ACC: Application Lifecycle Management Using Visual Studio 2013

ALM2013VS_ACC: Application Lifecycle Management Using Visual Studio 2013 ALM2013VS_ACC: Application Lifecycle Management Using Visual Studio 2013 Description This three-day, instructor-led course provides students with the knowledge and skills to effectively use the Application

More information

Quality Assurance - Karthik

Quality Assurance - Karthik Prevention is better than cure Quality Assurance - Karthik This maxim perfectly explains the difference between quality assurance and quality control. Quality Assurance is a set of processes that needs

More information

Customer Support Services

Customer Support Services i n s i g h t d e l i v e r e d Your guide to our i n s i g h t d e l i v e r e d i n s i g h t d e l i v e r e d Customer Support Services PANTONE 2597C CMYK 82 100 7 3 RGB 87 6 140 HTML 57068C Making

More information

Sound Transit Internal Audit Report - No. 2014-3

Sound Transit Internal Audit Report - No. 2014-3 Sound Transit Internal Audit Report - No. 2014-3 IT Project Management Report Date: Dec. 26, 2014 Table of Contents Page Background 2 Audit Approach and Methodology 2 Summary of Results 4 Findings & Management

More information

Application Lifecycle Management Using Visual Studio 2013 (SCRUM)

Application Lifecycle Management Using Visual Studio 2013 (SCRUM) Course Code: QAALMS13 Vendor: Microsoft Course Overview Duration: 3 RRP: 2,009 Application Lifecycle Management Using Visual Studio 2013 (SCRUM) Overview This three-day, instructor-led course provides

More information

Levels of Software Testing. Functional Testing

Levels of Software Testing. Functional Testing Levels of Software Testing There are different levels during the process of Testing. In this chapter a brief description is provided about these levels. Levels of testing include the different methodologies

More information

An Introduction to. Metrics. used during. Software Development

An Introduction to. Metrics. used during. Software Development An Introduction to Metrics used during Software Development Life Cycle www.softwaretestinggenius.com Page 1 of 10 Define the Metric Objectives You can t control what you can t measure. This is a quote

More information

Smarter Balanced Assessment Consortium. Recommendation

Smarter Balanced Assessment Consortium. Recommendation Smarter Balanced Assessment Consortium Recommendation Smarter Balanced Quality Assurance Approach Recommendation for the Smarter Balanced Assessment Consortium 20 July 2012 Summary When this document was

More information

LEAN AGILE POCKET GUIDE

LEAN AGILE POCKET GUIDE SATORI CONSULTING LEAN AGILE POCKET GUIDE Software Product Development Methodology Reference Guide PURPOSE This pocket guide serves as a reference to a family of lean agile software development methodologies

More information

Revision History Revision Date 3.0 14.02.10. Changes Initial version published to http://www.isasecure.org

Revision History Revision Date 3.0 14.02.10. Changes Initial version published to http://www.isasecure.org SDLA-312 ISA Security Compliance Institute Security Development Lifecycle Assurance - Security Development Lifecycle Assessment v3.0 Lifecycle Phases Number Phase Name Description PH1 Security Management

More information

RockID: Implementation 1 demo. Team Vihannekset 17.12.2014

RockID: Implementation 1 demo. Team Vihannekset 17.12.2014 RockID: Implementation 1 demo Team Vihannekset 17.12.2014 Agenda Status of the project Achieving the goals Use of human resources Top 5 risks QA plan Work results Technical specification Demo Project introduction

More information

Your guide to DevOps. Bring developers, IT, and the latest tools together to create a smarter, leaner, more successful coding machine

Your guide to DevOps. Bring developers, IT, and the latest tools together to create a smarter, leaner, more successful coding machine Your guide to DevOps Bring developers, IT, and the latest tools together to create a smarter, leaner, more successful coding machine Introduction The move to DevOps involves more than new processes and

More information

Client Overview. Engagement Situation. Key Requirements

Client Overview. Engagement Situation. Key Requirements Client Overview Our client is a global leader in mobile and digital advertising technology. Their unified monetization platform combines an ad server and a real-time bidding ad exchange to help publishers

More information

Agile extreme Development & Project Management Strategy Mentored/Component-based Workshop Series

Agile extreme Development & Project Management Strategy Mentored/Component-based Workshop Series Overview This is a 15-day live facilitator-led or virtual workshop is designed to prompt your entire team to work efficiently with Microsoft s Application Lifecycle Management solution based around Visual

More information

How To Write Unit Tests In A Continuous Integration

How To Write Unit Tests In A Continuous Integration Continuous Integration bjorn.boisschot@ctg.com 1. It works on my machine. Risk 1 Lack of Deployable Software Risk 2 Lack of project visibility 2011 CTG, Inc. 9 2011 CTG, Inc. 10 Risk 3 Low quality

More information

TEST MANAGEMENT SOLUTION Buyer s Guide WHITEPAPER. Real-Time Test Management

TEST MANAGEMENT SOLUTION Buyer s Guide WHITEPAPER. Real-Time Test Management TEST MANAGEMENT SOLUTION Buyer s Guide WHITEPAPER Real-Time Test Management How to Select the Best Test Management Vendor? The implementation of a Test Management system to automate business processes

More information

Model-based Testing: Next Generation Functional Software Testing

Model-based Testing: Next Generation Functional Software Testing Model-based Testing: Next Generation Functional Software Testing By Dr. Bruno Legeard Model-based testing (MBT) is an increasingly widely-used technique for automating the generation and execution of tests.

More information

Software Testing. Knowledge Base. Rajat Kumar Bal. Introduction

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

More information

The Dangers of Use Cases Employed as Test Cases

The Dangers of Use Cases Employed as Test Cases The Dangers of Use Cases Employed as Test Cases Bernie Berger This document is intended to provide background support and additional information to the slide presentation at STARWest 2001. I don t consider

More information

White Paper. Fundamentals of Performance Testing

White Paper. Fundamentals of Performance Testing etri White Paper Fundamentals of Performance Testing The Increasing Need for Proper Performance Testing due to Increasing Software Complexity in the Enterprise There have been two significant changes in

More information

Best Practices for Adopting Visualization Into Your Software Process. Mitch Bishop Johann Mendoza

Best Practices for Adopting Visualization Into Your Software Process. Mitch Bishop Johann Mendoza Best Practices for Adopting Visualization Into Your Software Process Mitch Bishop Johann Mendoza #1 Issue Facing CIOs Today Dramatically cutting application development cost How Do CIOs Get There? (part

More information

What is a life cycle model?

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

More information

E-vote 2011 Version: 1.0 Testing and Approval Date: 26/10/2009. E-vote 2011. SSA-U Appendix 5 Testing and Approval Project: E-vote 2011

E-vote 2011 Version: 1.0 Testing and Approval Date: 26/10/2009. E-vote 2011. SSA-U Appendix 5 Testing and Approval Project: E-vote 2011 E-vote 2011 SSA-U Appendix 5 Testing and Approval Project: E-vote 2011 Change log Version Date Author Description/changes 0.1 26.10.09 First version Page 1 CONTENT 1. INTRODUCTION 3 2. TESTING PROCESS

More information

SA Tool Kit release life cycle

SA Tool Kit release life cycle Release management Release management process is a software engineering process intended to oversee the development, testing, deployment and support of software releases. A release is usually a named collection

More information

Scrum Methodology in Product Testing : A Practical Approach

Scrum Methodology in Product Testing : A Practical Approach Scrum Methodology in Product Testing : A Practical Approach Suman Kumar Kanth Sumankumar_kanth@infosys.com Mobile: +91 9937285725 Infosys Technologies Limited Proceedings for the session 1. Challenges

More information

Presentation: 1.1 Introduction to Software Testing

Presentation: 1.1 Introduction to Software Testing Software Testing M1: Introduction to Software Testing 1.1 What is Software Testing? 1.2 Need for Software Testing 1.3 Testing Fundamentals M2: Introduction to Testing Techniques 2.1 Static Testing 2.2

More information

SYSTEM DEVELOPMENT AND IMPLEMENTATION

SYSTEM DEVELOPMENT AND IMPLEMENTATION CHAPTER 6 SYSTEM DEVELOPMENT AND IMPLEMENTATION 6.0 Introduction This chapter discusses about the development and implementation process of EPUM web-based system. The process is based on the system design

More information

A Practical Guide to implementing Agile QA process on Scrum Projects

A Practical Guide to implementing Agile QA process on Scrum Projects Agile QA A Practical Guide to implementing Agile QA process on Scrum Projects Syed Rayhan Co-founder, Code71, Inc. Contact: srayhan@code71.com Blog: http://blog.syedrayhan.com Company: http://www.code71.com

More information

Tonight s Speaker. Life of a Tester at Microsoft Urvashi Tyagi Software Test Manager, Microsoft

Tonight s Speaker. Life of a Tester at Microsoft Urvashi Tyagi Software Test Manager, Microsoft Tonight s Speaker Life of a Tester at Microsoft Urvashi Tyagi Software Test Manager, Microsoft You will learn about what a software tester does at Microsoft, how the role interfaces with program managers

More information

Sample Exam. 2011 Syllabus

Sample Exam. 2011 Syllabus ISTQ Foundation Level 2011 Syllabus Version 2.3 Qualifications oard Release ate: 13 June 2015 ertified Tester Foundation Level Qualifications oard opyright 2015 Qualifications oard (hereinafter called

More information

Cloud Counting. Research Analysis

Cloud Counting. Research Analysis Cloud Counting Research Analysis July 2014 research Research Evaluation Methodology Heuristic Evaluation was the main methodology used to evaluate the cloudcounting.com website. The UserFocus Heuristic

More information

Managing Agile Projects in TestTrack GUIDE

Managing Agile Projects in TestTrack GUIDE Managing Agile Projects in TestTrack GUIDE Table of Contents Introduction...1 Automatic Traceability...2 Setting Up TestTrack for Agile...6 Plan Your Folder Structure... 10 Building Your Product Backlog...

More information

The Quality Assurance Centre of Excellence

The Quality Assurance Centre of Excellence The Quality Assurance Centre of Excellence A X I S T E C H N I C A L G R O U P A N A H E I M H E A D Q U A R T E R S, 300 S. H A R B O R, B L V D. S U I T E 904, A N A H E I M, CA 92805 PHONE :( 714) 491-2636

More information

Establishing your Automation Development Lifecycle

Establishing your Automation Development Lifecycle Establishing your Automation Development Lifecycle Frequently I engage clients in assessing and improving their automation efforts. The discussion normally starts from a position of frustration We ve invested

More information

Minnesota Health Insurance Exchange (MNHIX)

Minnesota Health Insurance Exchange (MNHIX) Minnesota Health Insurance Exchange (MNHIX) Project Status Report Week Ending: 09-19-2012 Page - 1 Executive Summary The Executive Summary provides an executive level review of general project activities,

More information

ASSURING SOFTWARE QUALITY USING VISUAL STUDIO 2010

ASSURING SOFTWARE QUALITY USING VISUAL STUDIO 2010 ASSURING SOFTWARE QUALITY USING VISUAL STUDIO 2010 QA2010 3 Days INTRODUCTION This three-day, instructor-led course provides students with the knowledge and skills to prevent, detect, manage and avoid

More information

System Development Life Cycle Guide

System Development Life Cycle Guide TEXAS DEPARTMENT OF INFORMATION RESOURCES System Development Life Cycle Guide Version 1.1 30 MAY 2008 Version History This and other Framework Extension tools are available on Framework Web site. Release

More information

7/24/2015. Blackstone Drupal Team

7/24/2015. Blackstone Drupal Team 7/24/2015 Drupal to Agile Drupal Blackstone Drupal Team 1 Agenda What We Will Present Today 1:00 PM 1:15 PM Introduction Why Apply Agile to Drupal Development Sprint 0 Model Sprint Cadence Definition of

More information

The Ambiguity Review Process. Richard Bender Bender RBT Inc. 17 Cardinale Lane Queensbury, NY 12804 518-743-8755 rbender@benderrbt.

The Ambiguity Review Process. Richard Bender Bender RBT Inc. 17 Cardinale Lane Queensbury, NY 12804 518-743-8755 rbender@benderrbt. The Ambiguity Review Process Richard Bender Bender RBT Inc. 17 Cardinale Lane Queensbury, NY 12804 518-743-8755 rbender@benderrbt.com The Ambiguity Review Process Purpose: An Ambiguity Review improves

More information

Visual Studio 2008: Windows Presentation Foundation

Visual Studio 2008: Windows Presentation Foundation Visual Studio 2008: Windows Presentation Foundation Course 6460A: Three days; Instructor-Led Introduction This three-day instructor-led course provides students with the knowledge and skills to build and

More information

Educational Collaborative Develops Big Data Solution with MongoDB

Educational Collaborative Develops Big Data Solution with MongoDB CASE STUDY OVERVIEW Educational Collaborative Develops Big Data Solution with MongoDB INDUSTRIES Education, Nonprofit LOCATION Durham, NC PROJECT LENGTH 1 year, 5 months APPLICATION SUPPORTED Data driven

More information

Co-Presented by Mr. Bill Rinko-Gay and Dr. Constantin Stanca 9/28/2011

Co-Presented by Mr. Bill Rinko-Gay and Dr. Constantin Stanca 9/28/2011 QAI /QAAM 2011 Conference Proven Practices For Managing and Testing IT Projects Co-Presented by Mr. Bill Rinko-Gay and Dr. Constantin Stanca 9/28/2011 Format This presentation is a journey When Bill and

More information

Best Overall Use of Technology. Jaspersoft

Best Overall Use of Technology. Jaspersoft Best Overall Use of Technology Jaspersoft Kerstin Klein Manager, Engineering Processes/ Infrastructure, Jaspersoft From requirements to release QA centric development From Requirement to Release QA-Centric

More information

Benefits of Test Automation for Agile Testing

Benefits of Test Automation for Agile Testing Benefits of Test Automation for Agile Testing Manu GV 1, Namratha M 2, Pradeep 3 1 Technical Lead-Testing Calsoft Labs, Bangalore, India 2 Assistant Professor, BMSCE, Bangalore, India 3 Software Engineer,

More information

EUROPEAN ORGANIZATION FOR NUCLEAR RESEARCH CERN ACCELERATORS AND TECHNOLOGY SECTOR

EUROPEAN ORGANIZATION FOR NUCLEAR RESEARCH CERN ACCELERATORS AND TECHNOLOGY SECTOR EUROPEAN ORGANIZATION FOR NUCLEAR RESEARCH CERN ACCELERATORS AND TECHNOLOGY SECTOR CERN-ATS-2011-213 THE SOFTWARE IMPROVEMENT PROCESS - TOOLS AND RULES TO ENCOURAGE QUALITY K. Sigerud, V. Baggiolini, CERN,

More information

Software Testing Tutorial

Software Testing Tutorial Software Testing Tutorial SOFTWARE TESTING TUTORIAL Simply Easy Learning by tutorialspoint.com tutorialspoint.com i C O P Y R I G H T & D I S C L A I M E R N O T I C E All the content and graphics on this

More information

The role of integrated requirements management in software delivery.

The role of integrated requirements management in software delivery. Software development White paper October 2007 The role of integrated requirements Jim Heumann, requirements evangelist, IBM Rational 2 Contents 2 Introduction 2 What is integrated requirements management?

More information

Testing in a Mobile World

Testing in a Mobile World White Paper Testing in a Mobile World April 2014 Share this White Paper Contents Introduction 3 1. Testing in agile projects 4 2. Testing tools 6 3. Testing practices 10 4. Testing as a service 14 Conclusion

More information

Effective Software Security Management

Effective Software Security Management Effective Software Security Management choosing the right drivers for applying application security Author: Dharmesh M Mehta dharmeshmm@mastek.com / dharmeshmm@owasp.org Table of Contents Abstract... 1

More information

RUP Design. Purpose of Analysis & Design. Analysis & Design Workflow. Define Candidate Architecture. Create Initial Architecture Sketch

RUP Design. Purpose of Analysis & Design. Analysis & Design Workflow. Define Candidate Architecture. Create Initial Architecture Sketch RUP Design RUP Artifacts and Deliverables RUP Purpose of Analysis & Design To transform the requirements into a design of the system to-be. To evolve a robust architecture for the system. To adapt the

More information

8. Master Test Plan (MTP)

8. Master Test Plan (MTP) 8. Master Test Plan (MTP) The purpose of the Master Test Plan (MTP) is to provide an overall test planning and test management document for multiple levels of test (either within one project or across

More information

SEBA Solutions Inc. 2802 Bellwind Circle Rockledge, Florida 32955 321.269.1222 voice, 321.577.0210 fax www.sebasolutions.com.

SEBA Solutions Inc. 2802 Bellwind Circle Rockledge, Florida 32955 321.269.1222 voice, 321.577.0210 fax www.sebasolutions.com. Solutions Inc. Project Status Dr. James T. Brown PMP A project status process is one of the greatest opportunities to establish a positive, disciplined project management culture. The status monitoring

More information

MANUAL TESTING. (Complete Package) We are ready to serve Latest Testing Trends, Are you ready to learn.?? New Batches Info

MANUAL TESTING. (Complete Package) We are ready to serve Latest Testing Trends, Are you ready to learn.?? New Batches Info MANUAL TESTING (Complete Package) WEB APP TESTING DB TESTING MOBILE APP TESTING We are ready to serve Latest Testing Trends, Are you ready to learn.?? New Batches Info START DATE : TIMINGS : DURATION :

More information

Course Registration Case Study

Course Registration Case Study Course Registration Case Study Table of Contents Case Study...1 Case Study Background... 2 Course Registration System Problem Statement... 2 The Role of Tools... 2 Project Summary... 2 The Inception Phase...

More information

AB Suite in the Application Lifecycle

AB Suite in the Application Lifecycle AB Suite in the Application Lifecycle By: Alan Hood White Paper The application lifecycle goes well beyond simply writing applications and testing them. It includes everything from the initial collection

More information

Keywords document, agile documentation, documentation, Techno functional expert, Team Collaboration, document selection;

Keywords document, agile documentation, documentation, Techno functional expert, Team Collaboration, document selection; Volume 4, Issue 4, April 2014 ISSN: 2277 128X International Journal of Advanced Research in Computer Science and Software Engineering Research Paper Available online at: www.ijarcsse.com A Document Driven

More information

Accelerating Time to Market with Agile Testing

Accelerating Time to Market with Agile Testing WHITEPAPER Accelerating Time to Market with Agile Testing By Balaji Uppili To discover how GAVS can help you innovate and bring greater value to your business, write to inquiry@gavstech.com or visit www.gavstech.com.

More information

Top 10 Skills and Knowledge Set Every User Experience (UX) Professional Needs

Top 10 Skills and Knowledge Set Every User Experience (UX) Professional Needs Top 10 Skills and Knowledge Set Every User Experience (UX) Professional Needs The user experience (UX) of your products is only as good as the knowledge and skills of your UX staff. Here are the top 10

More information

Integrated methodology for testing and quality management.

Integrated methodology for testing and quality management. Integrated methodology for testing and quality management. MindTest overview MindTest is an integrated testing methodology that meshes all the components of a testing engagement, manages the quality of

More information

Group Assignment Agile Development Processes 2012

Group Assignment Agile Development Processes 2012 Group Assignment Agile Development Processes 2012 The following assignment is mandatory in the course, EDA397 held at Chalmers University of Technology. The submissions will be in the form of continuous

More information

Exhibit F. VA-130620-CAI - Staff Aug Job Titles and Descriptions Effective 2015

Exhibit F. VA-130620-CAI - Staff Aug Job Titles and Descriptions Effective 2015 Applications... 3 1. Programmer Analyst... 3 2. Programmer... 5 3. Software Test Analyst... 6 4. Technical Writer... 9 5. Business Analyst... 10 6. System Analyst... 12 7. Software Solutions Architect...

More information

Testing Lifecycle: Don t be a fool, use a proper tool.

Testing Lifecycle: Don t be a fool, use a proper tool. Testing Lifecycle: Don t be a fool, use a proper tool. Zdenek Grössl and Lucie Riedlova Abstract. Show historical evolution of testing and evolution of testers. Description how Testing evolved from random

More information

ALM Solutions using Visual Studio TFS 2013 ALMI13; 5 Days, Instructor-led

ALM Solutions using Visual Studio TFS 2013 ALMI13; 5 Days, Instructor-led ALM Solutions using Visual Studio TFS 2013 ALMI13; 5 Days, Instructor-led Course Description This five day course is designed to get your entire team working efficiently with Microsoft s Application Lifecycle

More information

An Automated Testing Tool Using UI Structure

An Automated Testing Tool Using UI Structure , March 12-14, 2014, Hong Kong An Automated Testing Tool Using UI Structure Nutharat Harnvorawong, Taratip Suwannasart, Member, IAENG Abstract Testers usually run a new version of software against existing

More information

ICAgile Learning Roadmap Agile Testing Track

ICAgile Learning Roadmap Agile Testing Track International Consortium for Agile ICAgile Learning Roadmap Agile Testing Track Learning Objectives Licensing Information The work in this document was facilitated by the International Consortium for Agile

More information

ArchiMate and TOGAF. What is the added value?

ArchiMate and TOGAF. What is the added value? ArchiMate and TOGAF What is the added value? Why use TOGAF next to ArchiMate? ArchiMate provides a (visual) language ArchiMate provides a content framework TOGAF provides a process TOGAF provides a way

More information

QA & Test Management. Overview. www.intland.com

QA & Test Management. Overview. www.intland.com Agile, Waterfall & Hybrid Method Support SAFe Template for Scaling Agile Git, SVN, Mercurial Integration Release IT Operations & DevOps Baselining (Versioning) Integrated with requirements and QA & Testing

More information

PROJECT MANAGEMENT PLAN Outline VERSION 0.0 STATUS: OUTLINE DATE:

PROJECT MANAGEMENT PLAN Outline VERSION 0.0 STATUS: OUTLINE DATE: PROJECT MANAGEMENT PLAN Outline VERSION 0.0 STATUS: OUTLINE DATE: Project Name Project Management Plan Document Information Document Title Version Author Owner Project Management Plan Amendment History

More information

Enterprise Architecture Process, Structure and Organization

Enterprise Architecture Process, Structure and Organization Organizational development Enterprise Process, Structure and Organization t-eam* - a framework derived from project experience Dipl.-Inform. Klaus D. Niemann Managing Director...act! consulting GmbH Glockengießerwall

More information

PROJECT THE WIKI WAY: USING WIKI FOR COMPUTER SCIENCE COURSE PROJECT MAN- AGEMENT

PROJECT THE WIKI WAY: USING WIKI FOR COMPUTER SCIENCE COURSE PROJECT MAN- AGEMENT PROJECT THE WIKI WAY: USING WIKI FOR COMPUTER SCIENCE COURSE PROJECT MAN- AGEMENT Li Xu Department of Computer Science University of Massachusetts Lowell Lowell, MA 01854, USA 978 934-1941 xu@cs.uml.edu

More information

QUICK FACTS. Facilitating Application Packaging on Behalf of a Global Professional Services Company

QUICK FACTS. Facilitating Application Packaging on Behalf of a Global Professional Services Company [ Professional Services, Technology Deployment ] TEKsystems Global Services Customer Success Stories Client Profile Industry: Professional Services Revenue: Over $13 billion Employees: Over 250,000 Geographic

More information

Software Testing, Mythology & Methodologies

Software Testing, Mythology & Methodologies Software, Mythology & Methodologies Sonali Waje 1, Vandana Gaikwad 2, Pranchal Chaudhari 3 1,3 B.E. Information Technology, 2 B.E.Computer Engineering Abstract - It is generally believed that phases of

More information

Basic Testing Concepts and Terminology

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

More information

Manual Testing Online Training Concepts : Software Testing Manual Module 1: Testing fundamentals. Introduction:

Manual Testing Online Training Concepts : Software Testing Manual Module 1: Testing fundamentals. Introduction: Manual Testing Online Training Concepts : Software Testing Manual Module 1: Testing fundamentals Introduction: Why explicitly the s/w companies are recruited the test engineers: Who can do this Testing:

More information

Sparx Systems Enterprise Architect for Team Players

Sparx Systems Enterprise Architect for Team Players Course Description 4 day - expert led onsite training and hands-on workshops Experience hands-on modeling and learn how to use Enterprise Architect with your next project. Discover surprising ways to improve

More information

WHY DO I NEED A PROGRAM MANAGEMENT OFFICE (AND HOW DO I GET ONE)?

WHY DO I NEED A PROGRAM MANAGEMENT OFFICE (AND HOW DO I GET ONE)? WHY DO I NEED A PROGRAM MANAGEMENT OFFICE (AND HOW DO I GET ONE)? Due to the often complex and risky nature of projects, many organizations experience pressure for consistency in strategy, communication,

More information

TEST AUTOMATION. A solution to save time and money on testing

TEST AUTOMATION. A solution to save time and money on testing TEST AUTOMATION A solution to save time and money on testing Modern business is inconceivable without the continuous improvement of products and associated information systems. The speed at which software

More information

Time Monitoring Tool Software Development Plan. Version <1.1>

Time Monitoring Tool Software Development Plan. Version <1.1> Time Monitoring Tool Software Development Plan Version Revision History Date Version Description Author 10/01/01 1.0 First Draft Sabrina Laflamme 12/01/01 1.1 Completion of Document John Lemon Page

More information

Web UI & Functional Test Automation for Continuous Agile Deliveries

Web UI & Functional Test Automation for Continuous Agile Deliveries Web UI & Functional Test Automation for Continuous Agile Deliveries Web Mobile API Database Date: 19 th Jan, 2016 Webinar Presentation by, Premal Dave, TestingWhiz About TestingWhiz TestingWhiz offers

More information

Appendix A-2 Generic Job Titles for respective categories

Appendix A-2 Generic Job Titles for respective categories Appendix A-2 for respective categories A2.1 Job Category Software Engineering/Software Development Competency Level Master 1. Participate in the strategic management of software development. 2. Provide

More information

Requirements Analysis Concepts & Principles. Instructor: Dr. Jerry Gao

Requirements Analysis Concepts & Principles. Instructor: Dr. Jerry Gao Requirements Analysis Concepts & Principles Instructor: Dr. Jerry Gao Requirements Analysis Concepts and Principles - Requirements Analysis - Communication Techniques - Initiating the Process - Facilitated

More information

Spiel. Connect to people by sharing stories through your favorite discoveries

Spiel. Connect to people by sharing stories through your favorite discoveries Spiel Connect to people by sharing stories through your favorite discoveries Addison Leong Joanne Jang Katherine Liu SunMi Lee Development & user Development & user Design & product Development & testing

More information

4.12 System Development

4.12 System Development Section 4 Bidder's Products, Methodology, and Approach to the Project 4.1 FACTS II Requirements Summary 4.11 Interfaces 4.2 Functional Requirements 4.12 System Development 4.3 Technical Requirements 4.13

More information

Microsoft Enterprise Search for IT Professionals Course 10802A; 3 Days, Instructor-led

Microsoft Enterprise Search for IT Professionals Course 10802A; 3 Days, Instructor-led Microsoft Enterprise Search for IT Professionals Course 10802A; 3 Days, Instructor-led Course Description This three day course prepares IT Professionals to administer enterprise search solutions using

More information

The SPES Methodology Modeling- and Analysis Techniques

The SPES Methodology Modeling- and Analysis Techniques The SPES Methodology Modeling- and Analysis Techniques Dr. Wolfgang Böhm Technische Universität München boehmw@in.tum.de Agenda SPES_XT Project Overview Some Basic Notions The SPES Methodology SPES_XT

More information