ICAgile Learning Roadmap Agile Testing Track
|
|
|
- Irene Ramsey
- 10 years ago
- Views:
Transcription
1 International Consortium for Agile ICAgile Learning Roadmap Agile Testing Track Learning Objectives
2 Licensing Information The work in this document was facilitated by the International Consortium for Agile (ICAgile) and done by the contribution of various Agile Experts and Practitioners. These learning objectives are intended to help the growing Agile community worldwide and as such this work is licensed under the following license. Creative Commons Attribution 4.0 International License YOU ARE FREE TO: Share copy and redistribute the material in any medium or format Adapt remix, transform, and build upon the material for any purpose. UNDER THE FOLLOWING TERMS: Attribution You must give appropriate credit to The International Consortium for Agile (ICAgile), provide a link to the license, and indicate if changes were made. You may do so in any reasonable manner, but not in any way that suggests the licensor endorses you or your use. NOTICES: No warranties are given. The license may not give you all of the permissions necessary for your intended use. For example, other rights such as publicity, privacy, or moral rights may limit how you use the material.
3 Special Thanks For the Agile Testing Track, ICAgile would like to give special thanks to the following track contributors. Janet Gregory Jeff Payne Sharon Robson
4 Learning Objectives 1. Agile Testing Mindset 1.1. Overview of Agile Testing Origins of Agile Testing Many people who hear about Agile testing for the first time assume that it was created as part of the Agile movement. In actuality, much like Agile itself, many of the Agile testing techniques where espoused well before the Agile Manifesto was created. The purpose of this LO is to anchor the ideas of Agile testing in earlier work, giving the learners continuity from the past to the present. Debunk the myth that there is no testing in agile teams, as well as clarify that the testing is not "just" unit and customer testing. Short discussion on the good practices of development including testing - not excluding it Agile Testing vs. Traditional Approaches Agile testing is much different from testing performed during traditional software development approaches. The purpose of this LO is to provide insight into the major differences between Agile testing and testing performed as part of traditional (phased-based) software development approaches in which testing is primarily performed by software testers who are often in their own organization and sometimes only involved late in the development lifecycle. To be acceptable this learning objective must include a short group discussion detailing the benefits of clear acceptance criteria, frequent feedback loops, early testing. The value of a cross functional team must also be discussed. The group should be aware of the different communication models used in agile and the value of collaboration over documentation Mindset & Culture Agile Testing Principles The Principles behind the Agile Manifesto establish guiding principles for not only the Agile movement but Agile testing as a discipline. The purpose of this LO is to help learners understand how the Agile Manifesto is realized within an Agile testing process and approach. To be acceptable, you only need to relate some of the principles to testing, not all 12. Specically, feedback and simplicity and collaboration Whole Team Approach Quality is not owned by a particular role in Agile. It is a property of software that the entire team must make sure is present before software is released to customers. The purpose of this LO is to introduce the learner to the concept that quality is everyone s responsibility during Agile projects and everyone is involved in software testing. Testers are often ideally suited to guide the team toward achieving its quality goals and its definition of done based on team definitions of the quality attributes for the product. The role each team member typically plays for quality will be discussed. To be acceptable, this should include a discussion around whole-team quality concepts plus how "done" is typically defined for stories, iterations, releases. discussed quality roles across team members. 2
5 Building Quality In The role of a tester shifts in Agile from that of quality gate keeper to a facilitator who supports the team through asking questions to help clarify understanding, as well as testing and critiquing the product. The purpose of this LO is to shift the mindset of testers from that of an independent group responsible for gating the development process to a collaborative team member focused on improving the product and releasing value to the customer. To be acceptable, this should include a discussion of how testers collaborate with other team members through the entire software development life-cycle (planning, implementation, release, maintenance) Continuous Improvement and Feedback Agile testing provides critical insights and feedback into the software process that can be used to drive team and quality improvements and assist the organization in making informed business decisions regarding software release. The purpose of this LO is to emphasize that Agile testing is a critical feedback component when seeking to improve operational effectiveness. To be acceptable, this LO should include the concept that the automation of testing is a critical component in providing real-time feedback. Other examples for providing feedback should be included such as retrospectives, pairing Ingraining The Agile Testing Mindset (Hands-on Exercise) Practicing behaviors can solidify the mindset and culture of Agile testing. The purpose of this LO is to have the learner experience situations in which the Agile testing mindset is likely to be different, so the learner can internalize the difference experientially, not just in concept. To be acceptable, this LO should provide exercises that give the learner a hands-on experience to the agile testing mindset. 2. Testing Techniques 2.1. Categories of Testing Agile Testing Quadrants or Categories Testing activities can be broken into various categories of testing based upon their purpose and value. Types of testing are often broken into categories that include: testing that supports project team development efforts, testing that looks at quality from a business perspective, testing that critiques the product, and testing that exercises the relationship between software and its deployment platform. The purpose of this LO is to provide the learner with a sound understanding of the purpose of various testing techniques so they can be applied appropriately and at the right time within an Agile environment. To be acceptable, this LO should provide the learner not only with a model to categorize the testing but also with an understanding of how to map the model (quadrants or categories) to their real-life tests Automation Pyramid - Introduction 3
6 Automated testing can be performed at various levels within a software application. An automation pyramid or structure describes these various levels and discusses the approach and likelihood of automating tests within each of them. The purpose of this LO is to provide the learner with a basic understanding of the various types of testing that can be automated and how decisions get made regarding what to automate during an Agile project. To be acceptable, this LO should include TDD's role in providing quick feedback cycles at the unit level, testing below the UI at the service / API level, and testing well as testing workflows through the UI, and thier roles in regression testing. All 3 levels should be addressed Testing Techniques Test design techniques are necessary in an agile environment, they need to incorporate existing techniques and extend, and apply them to the collaborative methods. Introduce some simple ideas about approaching test design; For example mind-mapping, context diagrams; collaborative methods that may work in a collaborative environment. To be acceptable, this LO should include a hands on exercise using one of these practices to demonstrate how collaboration can enhance test knowledge Collaborating with Developers Unit and Component Testing Developer testing of individual software units and associated components is critical to detecting implementation defects within software. Unit and component tests are leveraged within TDD as well. The purpose of this LO is to thoroughly understand the purpose and approach to successfully implementing unit and component testing on Agile projects and discussing how testers support developer testing during development cycles Pairing between the Developer and Tester Additional testing techniques beyond unit/component testing are often necessary to test beneath the UI level. The purpose of this LO is to provide the learner with a sound understanding how developers and testers pair during fixture / test method development and API-level testing. To be acceptable, this LO should discuss how testers effectively support test fixture / method development performed by a developer Example Driven Development Acceptance Test-driven Development (ATDD) ATDD is a common technique for assuring that Stories are implemented in a manner that satisfies the exit criteria defined for Story completion. It is often used as a technique to test Stories but in actuality includes the testing of key business processes and non-functional requirements as well. The purpose of this LO is to thoroughly understand the purpose and approach to successfully implementing Acceptance Test-driven Development (ATDD) on Agile projects. 4
7 To be acceptable, this LO should include hands-on exercises that enable deep understanding of ATDD at the product level (holistic), feature level, and at the story level. The LO should discuss when and how to generate and record the acceptance criteria through the life-cycle Behavior-Driven Development (BDD) BDD is an alternative approach to ATDD that is sometimes used to test Stories, Business Process, and non-functional Requirements based upon an understanding of user behavior. The purpose of this LO is to thoroughly understand the purpose and approach to successfully implementing Behavior-driven Development on Agile projects. To be acceptable, this LO should include hands-on exercises using the "given/when/then" that enable deep understanding of BDD providing main and alternate flows and applying test design techniques to expand existing criteria to include other behavioral traits of the product not previously considered Spec by Example Specification by example uses the 3 amigos idea in a workshop environment to express examples. To introduce the terminology and how it is different / same as ATDD and BDD. To be acceptable this LO should relate Specification by Example to both ATDD and BDD highlighting the value of real data-sets, real examples and tangible outcomes in story definitions Feature and Story Testing User Story Testing Testing of User Stories is critical to successful development of software within an Agile project. This testing is often performed using the techniques above but can be done in other ways as is appropriate or necessary. The purpose of this LO is to thoroughly understand how User Stories are tested during software development; this is an extension to ATDD to include boundary conditions, and other types of testing such as exploratory testing. To be acceptable, this LO should include discussion about user stories and what makes testing complete. It should be emphasized that story testing is fundamental in all testing aspects Feature Testing While the above techniques are the most common, there are a variety of other testing techniques that can be applied to test software features. The purpose of this LO is to make sure the learner sees the bigger picture beyond a user story (work-flows, end-to-end scenarios). To be acceptable, this LO should include a discussion and example that enable deep understanding of other feature testing techniques Exploratory Testing Exploratory testing provides a mechanism for additional testing to be performed on Stories or Business Processes based upon a tester s intuition and knowledge about the product. 5
8 The purpose of this LO is to provide the learner with a sound understanding of Exploratory Testing techniques and approaches and how they are best applied to an Agile project. Introduce the idea that automation can support ET. To be acceptable, this LO should include hands-on exercise or a discussion around a specific exploratory technique Non-functional testing Non-functional, or Quadrant 4 tests are sometimes ignored by customers. There is no clear understanding of who is responsible for it. The purpose of this LO is to demonstrate how to include testing these quality (non-functional) attributes in our testing. To be acceptable, this LO should include a discussion and examples about how to include constraints in discussions about story and feature acceptance. 3. Agile Testing Process 3.1. Roles and Responsibilities Team-Based Testing Approach Testing during an Agile project is team-oriented wherein it is common for every member of the team to provide some level of testing support. that within an Agile project, the entire project team is responsible for test plans, test design, test cases, test automation, and test reporting. To be acceptable a discussion on large organizations and dependencies between teams should be included Typical Business Representative Role in Testing Business Representatives typically provide guidance on acceptability and provide examples of what Stories are intended to accomplish. of the common test activities that a business representative is involved with during an Agile project Typical Programmer Role in Testing Software programmers typically build, automate, and run a variety of tests at a variety of levels as part of their development process. TDD and ATDD leverages this testing to improve design and development. of the role software programmers play in agile testing Typical Tester Role in Testing Software testers typically work hand-in-hand with the product owner and programmers to plan, execute, and report on the testing that is performed at all levels. of the role software testers play in Agile testing. Skills should include technical awareness; T-shaped skill-set. To be acceptable, this LO should cover the concept that Testers often are responsible for helping create User Story and business process tests and performing exploratory testing; and that Testers participate in and may develop automated tests along with programmers or a dedicated test automation team. 6
9 Role of Test Managers in Agile When an organization has decided to organize around products or projects, test managers are often left to wonder what their role within this new structure will be. of the new role that a test manager plays, and the reason behind the shift. For example, mentoring test communities of practice and helping coordinate post-development testing activities Test Strategy and Planning Different strategies based on levels of precision Lightweight planning is typically part of the release planning done prior to associated iterations. of how lightweight test strategy and planning is performed during release planning and how decisions are made regarding what type of test documentation is needed and how much is enough. To be acceptable, this LO should include a discussion and optionally a hands-on exercise that enable deep understanding of the release planning done prior to associated iterations During Iteration Planning/Kickoff Test planning at iteration kickoff focuses on detailing acceptance criteria and examples for Stories. of how tests are developed prior to implementation. To be acceptable, this LO should include hands-on exercises that enable deep understanding of the test planning done at iteration kickoff when exercises are required Lightweight Test Plan Documentation Test planning in Agile is different from traditional development approaches as the goal is to provide the least amount of documentation needed to get the job done. of how to determine the amount of test documentation necessary for a given environment or situation Defect Tracking and Management The amount of defect tracking that is performed during an Agile project depends upon what works best for the team. The purpose of this LO is to describe the key trade-offs for determining which defects to track and which to rely upon team communication to correct without tracking. To be acceptable, this LO should include a discussion about how defects are managed in an agile project Results Reporting Test reporting during Agile projects depends upon what works best for the team. The purpose of this LO is to describe the key trade-offs between documented test results and team communication of those results. 7
10 Test Metrics Metrics collected to support test completeness and release readiness decisions. Example: determining whether a story, feature or/ iteration is "Done". The purpose of this LO is to inform the learner as to which metrics make sense to collect and report on for both test completeness and release readiness within an Agile project Regression Tests Automated regression tests are essential to reducing the cost of change and providing real-time feedback during the development process. of how to best leverage tests that have been automated during development within future iterations and releases. To be acceptable, this LO should have a discussion about why most regressions tests should be automated, and what the trade-off are between automated and manual regression tests Successful Delivery Time-boxed Delivery Time-boxed delivery means that at the end of every iteration, there is a potentially shippable product, including testing. The purpose of this LO is to emphasize that all work on a story needs to be completed within the iteration and time must be allocated by the team to allow that to happen. Testing and coding should be planned for concurrency not sequential work. Testing and coding are to be considered one process not two steps. To be acceptable, this LO should cover the avoidance of mini-waterfalls inside and outside of the iteration. The definition of done must be wholly completed for a unit of work to be completed, including all aspects of the work and verification of the work that was defined as in scope by the team for the story level verification Continuous Delivery Continuous delivery means that every build has the potential to be deployed to production. The purpose of the LO is to understand what this means to testing. Inclusion of automation, responsiveness to defects and change. To understand how aspects of testing that enable continuous delivery in a team are captured and incorporated into the work flow Post-development test cycles In agile, testing is as early as possible for fast feedback, but during the endgame, there is often final testing that needs to happen. The purpose of this LO is to describe the interaction of testers in postdevelopment test cycles. This includes integration test teams that take advantage of economies of scale for security testing, browser compatibility, interoperability, etc. in an integrated environment. It also includes testing in the End Game for final UAT, or final performance testing.. To be acceptable, this LO should include a discussion about what testing happens in the deployment or "end-game" stages of the work. Should include environments, test types, and test teams Iteration Wrap-Up 8
11 Wrap-up activities during an iteration include a product demo, retrospective, and sometimes a User Acceptance Test. of the role that software testers play during iteration wrap-up activities. To be acceptable, this LO should include a discussion of how to bring up testing problems in a retrospective. Also this LO should provide a list of common iteration problems and issues from a testers perspective. We would like the learner to experience examples of how to articulate and solve the problems testing problems with the team Definition of a Release/End Game A release process (aka end game ) is performed whenever a decision has been made by the business to release software to customer(s). of how a release decision is made and what testing activities are typically part of the release process. To be acceptable, this LO should include a discussion about the difference between a project retrospective and an iteration retrospective. Include a typical Release check-list of activities. The end game is not a stabilization activity it is a concluding activity User Acceptance Testing (UAT) User Acceptance Testing is used within Agile to gain customer feedback on a working piece of software before its release. The purpose of this LO is to provide the learner with a sound understanding of user acceptance testing (UAT) techniques and approaches and how they are best applied to an Agile project. To be acceptable, this LO should include a discussion that this is to be done as early and often as possible to enable short feedback loops. This should also be seen as on opportunity to capture change and feedback for future work System-wide and Cross-team Testing The focus needs to be on products and solutions not on projects. Therefore testing needs to maintain the big picture that spans beyond the individual project and crosses over to multiple teams or projects to a more system-wide view of testing of how to coordinate testing across agile projects and associated testing activities when the project must interact/interface with other projects and IT technology release schedules Post-Release Testing Testing after software release typically consists of testing hot fixes for critical defects identified in the field and on-going testing of bug fixes not fixed prior to release. of the types of testing that is performed post release and how continuous testing supports a continuous delivery process Documentation for Regulatory Requirements Regulatory compliance often demands particular documentation be developed as part of any software development process. 9
12 of how regulatory requirements can still be fulfilled when following an Agile development process Test Environments and Infrastructure Typical Environments for Test Multiple environments are often necessary to support testing activities during iterations and the release process. of the typical test environments that must be set up and maintained to support testing activities during iterations and releases. This is to include information about the tool and data set ups as well. To be acceptable, this LO should include discussion and typical definitions of stable test environments with a known configurations. Each type of testing needs a defined environment to match the purpose of the tests being run Build Pipeline A build (or deployment) pipeline is a way to deal with automated tests, by breaking the build into stages. Each stage provides increasing level of confidence with different sets of tests running at each stage. The purpose of this LO is to understand how the build pipeline works to help determine which testing is appropriate for which test environment. What needs to happen before the build is deployed to the next stage. To be acceptable, this LO should discuss the product maturity as it moves through the levels of automation that can be applied in the automation of the testing Automated Builds Incremental automated builds are essential for reducing the cost of change and providing rapid feedback on quality to the development team. of how automated builds are set up to support a continuous testing process Testing the Proper Build As builds are constantly being generated during an Agile process, testing the proper build is critical to an effective testing process. The purpose of this LO is to discuss the best practices associated with choosing a build for test and keeping development and testing in sync during the process Test Data Management Effective test data management is essential to all aspects of Agile testing as the ability to select appropriate test data, set this data up, perform testing upon it, and reset any resulting changes is critical to an effective testing process. The purpose of this LO is to discuss the effective ways to generate and manage test data during an Agile process. To be acceptable, this LO is to discuss traceability and techniques for building the relationship between tests, data, environments and features Working on Distributed Teams Distributed Team Communication 10
13 Distributed teams are a fact of life in most organizations and must be dealt with to make Agile testing initiatives successful. of how communication can be most effective on distributed teams. To be acceptable, this LO needs to discuss common problems with distance based team. Examples of how tests can become the common language of the team, bridging ambiguity and confirming understanding no matter location or time zone Distributed Team Coordination Distributed teams are a fact of life in most organizations and must be dealt with to make Agile testing initiative successful. of how testing activities can be coordinated when the team is distributed. To be acceptable, this LO needs to discuss coordination, liaison overheads, hand over methods for the engagement of the testing activities within the iteration. 4. Test Automation 4.1. Test Automation Strategy Automation Pyramid Automated testing can be performed at various levels within a software application. An automation pyramid or structure describes these various levels and discusses the approach and likelihood of automating tests within each of them. The purpose of this LO is to provide the learner with a comprehensive understanding of the various types of testing that can be automated and how decisions get made regarding what to automate during an Agile project Planning for Automation Defining the approach, tools and timings for automation through the project. The purpose of this LO is to provide the learner with general knowledge regarding how to plan out an Agile test automation effort for each release as part of the test strategy. It also includes how to isolate parts of their system to be able to automate effectively. To be acceptable, this LO should include an exercise on how to illustrate a system, and identify how to isolate modules for automation (i.e.. mocking) Automation Frameworks Frameworks provide test infrastructure for automating various types and levels of tests. The purpose of this LO is to provide the learner with general knowledge regarding various types of test automation frameworks so they can effectively choose which frameworks make sense for their particular application based on testing requirements and time-lines Selecting Tests for Automation It is typically infeasible because of cost and time to automate all tests that are created and/or run. 11
14 of how to decide which tests that get created and/or run during an Agile project should be automated vs. tested manually Supporting Process Test automation is performed at various points during Agile project iterations and release cycles. When test automation is performed and for what purpose must be understood. The purpose of this LO is to the learner with an understanding of when it makes sense to automate tests during development iterations and release cycles Testing and Continuous Integration Automated Test Cycles (Continuous Testing) Integrating automated testing into a build environment assures that software changes are tested early and often during the development process. The purpose of this LO is to provide the learner with tips and techniques for integrating automated tests into an incremental build process such that software is validated during the entire development process Code Analysis/Metrics Code analysis and quality metrics can provide additional insights into an applications quality and release readiness of the software. of code analysis and code metrics for measuring the quality of software applications Automating Story and Feature Testing Mapping Tests to Automation When automating tests, the bigger picture is often lost because we concentrate of various levels of testing. We need to take the tests needed for all levels and map them to the overall automation strategy. The purpose of this LO is to understand how to map feature and story tests to all levels of automation. To be acceptable this LO should include an exercise on mapping feature and story tests to all levels of automation ATDD and BDD Testing Frameworks Frameworks exist that provide support for developing and running automated story and other types of feature tests during software iterations. The purpose of this LO is to give the learner hands-on experience with a commonly used story or feature test framework to further their understanding of how such frameworks are used to support development and testing activities. To be acceptable, this LO should include hands-on exercises (pseudocode or scripting) that enable deep understanding of a commonly used frameworks at the story, API, or service level UI Testing Frameworks Tools exist for exercising software through its user interface to test features and combinations of features. The purpose of this LO is to introduce the learner to commonly used UI test tool to further their understanding of how testing can be performed through software s user interface. 12
15 To be acceptable, this LO should include either a hands-on experience or a demo to illustrate how and when to use testing through the user interface Automation Support for Integration and System Testing Data Setup and Tear down Effective test automation often includes automating the manual processes associated with setting up and resetting test data. of how test automation can be used to automate the setup and tear down of test data sets. To be acceptable, this LO should introduce multiple ways of how to setup and tear-down data (like using a database, using flat files, setting up data within the tests themselves, etc.) Data within Automation To have stable test automation, you need controlled data. The purpose of this LO is to give learners insights into different ways of controlling the data so that the automation results are consistent Tools to Support Exploratory Testing While Exploratory Testing is inherently a manual testing process, tools can be leveraged to assist in the testing process. of how tools can assist an Exploratory Testing process. To acceptable, the LO should demonstrate tools for recording of results as well as (re)introduce tools to help with exploratory testing such as using Log files to see error messages, automation for data set up Tools for Performing Non-Functional Testing Automation tools exist to support non-functional testing like load testing, performance testing, and security testing. of tools that are available for testing non-functional requirements including load, performance, and security Virtualization Virtualization provides a mechanism (often automated) to support effective test environment setup, test execution, and test environment tear down during a testing process. The purpose of this LO is to describe how virtualization can support an automated, effective testing process. 13
Agile Testing (October 2011) Page 1. Learning Objectives for Agile Testing
Agile Testing (October 2011) Page 1 Learning Objectives for Agile Testing "Certification is the by-product; Learning is the product." Agile Testing should: Compare and contrast agile testing with traditional
Certified Agile Software Test Professional (CASTP)
Receive the education you need to succeed in Agile Projects Achieve the prestigious Education-Based Certifications Certified Agile Software Test Professional (CASTP) CASTP Practitioner Level CASTP Master
Bridging the Gap Between Acceptance Criteria and Definition of Done
Bridging the Gap Between Acceptance Criteria and Definition of Done Sowmya Purushotham, Amith Pulla [email protected], [email protected] Abstract With the onset of Scrum and as many organizations
ICAgile Learning Roadmap Agile Fundamentals Track
International Consortium for Agile ICAgile Learning Roadmap Agile Fundamentals Track Learning Objectives Licensing Information The work in this document was facilitated by the International Consortium
Agile Testing. What Students Learn
Agile Testing Transition sound traditional test practices into an Agile development environment. By using a step-by-step approach, this course documents how to transition from traditional test practices
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
How To Be Successful At An Agile Software Engineering
"Agile Software Engineering" Overview for external offering of ASE ABAP Juergen Heymann, CPO Software Engineering There are many ingredients for successful software projects Experienced Developers Domain
An Overview of Agile Testing
An Overview of Agile Testing Tampere 2009 Lisa Crispin With Material from Janet Gregory 1 Introduction Tester on agile teams since 2000 My teams: Delight customers Deliver production-ready value every
Agile Testing Overview
Copyright (c) 2008, Quality Tree Software, Inc. 1 Agile Myths, Busted Contrary to popular myth, Agile methods are not sloppy, ad hoc, do-whatever-feelsgood processes. Quite the contrary. As Mary Poppendieck
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
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
Introduction to Agile Software Development Process. Software Development Life Cycles
Introduction to Agile Software Development Process Presenter: Soontarin W. (Senior Software Process Specialist) Date: 24 November 2010 AGENDA Software Development Life Cycles Waterfall Model Iterative
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,
Agile Tester Foundation Course Outline
Foundation Course Outline General Description This course provides testers and test managers with an understanding of the fundamentals of testing on agile projects. Attendees will learn how agile software
Scrum and Testing The end of the test role Bryan Bakker 20 maart 2012
Scrum and Testing The end of the test role Bryan Bakker 20 maart 2012 voordracht georganiseerd door Discussiegroep Software Testing met de steun van Ingenieurshuis, Antwerpen Scrum and Testing... The end
Agile Systems Engineering: What is it and What Have We Learned?
Agile Systems Engineering: What is it and What Have We Learned? March 2012 Dr. Suzette S. Johnson Agile Engineering Northrop Grumman [email protected] Getting To Know You! Dr. Suzette Johnson Northrop
Preface 2008 - Agile Testing Review
Preface Why We Wrote This Book We were early adopters of Extreme Programming, testing on XP teams that weren't at all sure where testers and testing fit in. At the time, there wasn't much in the agile
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 :
Agile Test Planning with the Agile Testing Quadrants
Agile Test Planning with the Agile Testing Quadrants ADP Testing Workshop 2009 Lisa Crispin With Material from Janet Gregory and Brian Marick's Agile Testing Matrix 1 Introduction Me: Coding, testing Joined
Atomate Development Process. Quick Guide
Development Process Quick Guide METHODOLOGY Every project is unique You know your business inside out. You have thought and planned your ideas carefully and are keen to see it live as soon as possible.
The Agile Manifesto is based on 12 principles:
The Agile Manifesto is based on 12 principles: Customer satisfaction by rapid delivery of a useful product solution Welcome changing requirements, even late in development Working products are delivered
Workshop on Agile Test Strategies and Experiences. Fran O'Hara, Insight Test Services, Ireland
Workshop on Agile Test Strategies and Experiences W8 Fran O'Hara, Insight Test Services, Ireland Workshop Agile Test Strategies and Experiences Version 1.0 Fran O Hara [email protected] Europe
Agile and Secure: Can We Be Both?
Agile and Secure: Can We Be Both? OWASP AppSec Seattle Oct 2006 Keith Landrus Director of Technology Denim Group Ltd. [email protected] (210) 572-4400 Copyright 2006 - The OWASP Foundation Permission
Agile Project Management
Agile Project Management Summary Certification Abbreviation Prerequisite(s) Classroom Duration Number of CECs Number of Subjects Number of Themes Status ICAgile Certified Expert Agile Project Management
Adopting Agile Testing
Adopting Agile Testing A Borland Agile Testing White Paper August 2012 Executive Summary More and more companies are adopting Agile methods as a flexible way to introduce new software products. An important
Agile Scrum Workshop
Agile Scrum Workshop What is agile and scrum? Agile meaning: Able to move quickly and easily. Scrum meaning: a Rugby play Agile Scrum: It is an iterative and incremental agile software development framework
Business white paper. Best practices for implementing automated functional testing solutions
Business white paper Best practices for implementing automated functional testing solutions Table of contents Contents 3 Introduction 3 Functional testing versus unit testing 4 The pros and cons of manual
Business Analysis Capability Assessment
Overview The Business Analysis Capabilities Assessment is a framework for evaluating the current state of an organization s ability to execute a business automation effort from and end-to-end perspective..
Agile Projects 7. Agile Project Management 21
Contents Contents 1 2 3 Agile Projects 7 Introduction 8 About the Book 9 The Problems 10 The Agile Manifesto 12 Agile Approach 14 The Benefits 16 Project Components 18 Summary 20 Agile Project Management
Software Development Process
Software Development Process A software development process, also known as software development lifecycle, is a structure imposed on the development of a software product. Similar terms include software
Nova Software Quality Assurance Process
Nova Software Quality Assurance Process White Paper Atlantic International Building 15F No.2 Ke Yuan Yi Road, Shiqiaopu, Chongqing, P.R.C. 400039 Tel: 86-23- 68795169 Fax: 86-23- 68795169 Quality Assurance
Software Development Life Cycle (SDLC)
Software Development Life Cycle (SDLC) Supriyo Bhattacharjee MOF Capability Maturity Model (CMM) A bench-mark for measuring the maturity of an organization s software process CMM defines 5 levels of process
Agile & Scrum: What are these methodologies and how will they impact QA/testing roles? Marina Gil Santamaria Summer 2007
Agile & Scrum: What are these methodologies and how will they impact QA/testing roles? Marina Gil Santamaria Summer 2007 The idea behind the Agile approach is that instead of building a release that is
Introduction to Software Project Management. CITS3220 Software Requirements & Project Management
Introduction to Software Project Management CITS3220 Software Requirements & Project Management "A project gets a year late one day at a time." "Anything that can be changed will be changed until there
4.13 System Testing. Section 4 Bidder's Products, Methodology, and Approach to the Project. 4.14 System Training
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
Delivery. Continuous. Jez Humble and David Farley. AAddison-Wesley. Upper Saddle River, NJ Boston Indianapolis San Francisco
Continuous Delivery Jez Humble and David Farley AAddison-Wesley Upper Saddle River, NJ Boston Indianapolis San Francisco New York Toronto Montreal London Munich Paris Madrid Cape Town Sydney Tokyo Singapore
Testing in Scrum Projects
Testing in Scrum Projects Kalevi Evans Logica 2008. All rights reserved About Me Logica Suomi Oy (formerly WM-Data) Over 6 years experience Experience working in projects that apply the following software
Application Test Management and Quality Assurance
SAP Brief Extensions SAP Quality Center by HP Objectives Application Test Management and Quality Assurance Deliver new software with confidence Deliver new software with confidence Testing is critical
What an Architect Needs to Know
Corporate Technology What an Architect Needs to Know Experiences from the Siemens Curriculum for Engineers Frank Buschmann Siemens AG Corporate Technology Systems Architecture and Platforms Copyright Siemens
From Traditional Functional Testing to Enabling Continuous Quality in Mobile App Development
From Traditional Functional Testing to Enabling Continuous Quality in Mobile App Development Introduction Today s developers are under constant pressure to launch killer apps and release enhancements as
Introducing Agility into a Phase Gate Process
B E S T P R A C T I C E S W H I T E P A P E R Introducing Agility into a Phase Gate Process Jenny Stuart, Vice President of Consulting, Construx Software Version 1.1, June 2011 Contributors Earl Beede,
Copyrighted www.eh1infotech.com +919780265007, 0172-5098107 Address :- EH1-Infotech, SCF 69, Top Floor, Phase 3B-2, Sector 60, Mohali (Chandigarh),
Content of 6 Months Software Testing Training at EH1-Infotech Module 1: Introduction to Software Testing Basics of S/W testing Module 2: SQA Basics Testing introduction and terminology Verification and
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
Enabling Continuous Delivery by Leveraging the Deployment Pipeline
Enabling Continuous Delivery by Leveraging the Deployment Pipeline Jason Carter Principal (972) 689-6402 [email protected] Pariveda Solutions, Inc. Dallas,TX Table of Contents Matching
SECTION 4 TESTING & QUALITY CONTROL
Page 1 SECTION 4 TESTING & QUALITY CONTROL TESTING METHODOLOGY & THE TESTING LIFECYCLE The stages of the Testing Life Cycle are: Requirements Analysis, Planning, Test Case Development, Test Environment
Agile Testing. Workshop. Tilo Linz, imbus AG
Workshop Tilo Linz, imbus AG 2014 imbus AG www.imbus.de Tilo Linz CoFounder and member of managing board imbus AG President ISTQB (2002-2005) Chairman German Testing Board e.v. (2002-2013) Author Softwaretest
Testing and Quality in Agile Development Speaker: Allan Watty Company: ABB Inc Website: www.abb.com/enterprise-software
Testing and Quality in Agile Development Speaker: Allan Watty Company: ABB Inc Website: www.abb.com/enterprise-software Welcome to the PMI Houston Conference & Expo 2015 Please put your phone on silent
Life Cycle Models. V. Paúl Pauca. CSC 331-631 Fall 2013. Department of Computer Science Wake Forest University. Object Oriented Software Engineering
Life Cycle Models V. Paúl Pauca Department of Computer Science Wake Forest University CSC 331-631 Fall 2013 Software Life Cycle The overall framework in which software is conceived, developed, and maintained.
Agile Testing with Acceptance Test Driven Development and Behavior Driven Design. Two Day Course Overview
Agile Testing with Acceptance Test Driven Development and Behavior Driven Design Two Day Course Overview 2014 The Agile Tester, About the instructor. Tim Walker is a career software engineer, educator
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
Continuous Delivery. Anatomy of the Deployment Pipeline (Free Chapter) by Jez Humble and David Farley
Continuous Delivery Anatomy of the Deployment Pipeline (Free Chapter) by Jez Humble and David Farley Copyright 2011 ThoughtWorks Inc. All rights reserved www.thoughtworks-studios.com Introduction Continuous
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
SCRUM Product Ownership From the Inside Out
SCRUM Product Ownership From the Inside Out Bob Galen President & Principal Consultant, RGCG, LLC Leading you down the path of agility www.rgalen.com [email protected] Outline Introduction 1. Basics of the
Rapid software development. Ian Sommerville 2004 Software Engineering, 7th edition. Chapter 17 Slide 1
Rapid software development Ian Sommerville 2004 Software Engineering, 7th edition. Chapter 17 Slide 1 Objectives To explain how an iterative, incremental development process leads to faster delivery of
Agile and Secure Can We Be Both? Chicago OWASP. June 20 th, 2007
Agile and Secure Can We Be Both? Chicago OWASP June 20 th, 2007 The Agile Practitioner s Dilemma Agile Forces: Be more responsive to business concerns Increase the frequency of stable releases Decrease
Test Automation: A Project Management Perspective
Test Automation: A Project Management Perspective Abstract Amith Pulla [email protected] For most QA leads or managers, it s always difficult to get the project manager (PM) to invest in test automation.
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
Topics covered. Agile methods Plan-driven and agile development Extreme programming Agile project management Scaling agile methods
Topics covered Chapter 3 Agile Software Development Agile methods Plan-driven and agile Extreme programming Agile project management Scaling agile methods 1 2 Need for rapid software Rapid software Changing
Agile and Secure: OWASP AppSec Seattle Oct 2006. The OWASP Foundation http://www.owasp.org/
Agile and Secure: Can We Be Both? OWASP AppSec Seattle Oct 2006 Dan Cornell, OWASP San Antonio Leader Principal, Denim Group Ltd. [email protected] (210) 572-4400 Copyright 2006 - The OWASP Foundation
Continuous delivery Release software on-demand, not on Red Alert
Continuous delivery Release software on-demand, not on Red Alert Have it all. Ahead of the competition Value In a world where customers expect a mobile and connected 24x7 experience, businesses must adapt
Introduction to Agile Software Development
Introduction to Agile Software Development Word Association Write down the first word or phrase that pops in your head when you hear: Extreme Programming (XP) Team (or Personal) Software Process (TSP/PSP)
Introduction to Agile and Scrum
Introduction to Agile and Scrum Matthew Renze @matthewrenze COMS 309 - Software Development Practices Purpose Intro to Agile and Scrum Prepare you for the industry Questions and answers Overview Intro
Continuous Integration
CODING & DEVELOPMENT BORIS GORDON FEBRUARY 7 2013 Continuous Integration Introduction About me boztek on d.o. (http://drupal.org/user/134410) @boztek [email protected] 2 Introduction About you
Software Quality Testing Course Material
Prepared by Vipul Jain Software Quality Testing Course Material Course content is designed and will be taught in such a manner in order to make a person job ready in around 10-12 weeks. Classroom sessions
Executive Guide to SAFe 24 July 2014. An Executive s Guide to the Scaled Agile Framework. [email protected] @AlShalloway
An Executive s Guide to the Scaled Agile Framework Al Shalloway CEO, Net Objectives Al Shalloway CEO, Founder [email protected] @AlShalloway co-founder of Lean-Systems Society co-founder Lean-Kanban
ACCELERATE DEVOPS USING OPENSHIFT PAAS
ACCELERATE DEVOPS USING OPENSHIFT PAAS September 3, 2014 AGENDA World we live in today IT organization: Charter, goals, and challenges DevOps: Problem statement, what, and why How to enable DevOps Application
Agile Development and Testing Practices highlighted by the case studies as being particularly valuable from a software quality perspective
Agile Development and Testing Practices highlighted by the case studies as being particularly valuable from a software quality perspective Iteration Advantages: bringing testing into the development life
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
Growing testing skills using the Agile Testing Ecosystem. Dr Lee Hawkins Principal Test Architect Dell Software, Melbourne
Growing testing skills using the Agile Testing Ecosystem Dr Lee Hawkins Principal Test Architect Dell Software, Melbourne Who am I? 16 years at Quest Software / Dell Software in Melbourne, Australia. Really
Test Driven Development Part III: Continuous Integration Venkat Subramaniam [email protected] http://www.agiledeveloper.com/download.
Test Driven Development Part III: Continuous Integration Venkat Subramaniam [email protected] http://www.agiledeveloper.com/download.aspx Abstract In this final part of the three part series on
IBM Rational: Sustainable automated testing for SAP Ecosystems with Worksoft Certify
IBM Rational: Sustainable automated testing for SAP Ecosystems with Worksoft Certify David Myers Sales Director Worksoft, Inc. www.worksoft.com SAP Business Challenge Application Changes Service Pack New
Collaborative Project Management in a DevOps Culture
Collaborative Project Management in a DevOps Culture Speaker: Dennis Baldwin Company: Experis Website: www.experis.com Welcome to the PMI Houston Conference & Expo and Annual Job Fair 2015 Please put your
Transitioning Your Software Process To Agile Jeffery Payne Chief Executive Officer Coveros, Inc. [email protected] www.coveros.
Transitioning Your Software Process To Agile Jeffery Payne Chief Executive Officer Coveros, Inc. [email protected] www.coveros.com 1 About Coveros Coveros helps organizations accelerate the delivery
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
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
Proven Testing Techniques in Large Data Warehousing Projects
A P P L I C A T I O N S A WHITE PAPER SERIES A PAPER ON INDUSTRY-BEST TESTING PRACTICES TO DELIVER ZERO DEFECTS AND ENSURE REQUIREMENT- OUTPUT ALIGNMENT Proven Testing Techniques in Large Data Warehousing
Th3 - Open Source Tools for Test Management
Th3 - Open Source Tools for Test Management Narayanan C. V., Vice President, Sonata Software Limited www.sonata-software.com Agenda Introduction Methodology Architectural View Test Management Best Practices
ISTQB Agile Tester in a Nutshell ISTQB Marketing Working Group
ISTQB Agile Tester in a Nutshell ISTQB Marketing Working Group May 2014 WHAT IS THE ISTQB? ISTQB : International Software Testing Qualifications Board (www.istqb.org): Non-profit association Founded in
2015 IBM Continuous Engineering Open Labs Target to better LEARNING
2015 IBM Continuous Engineering Open Labs Target to better LEARNING (NO COST - not a substitute for full training courses) Choose from one or more of these Self-Paced, Hands-On Labs: DMT 3722 - Learn to
Rapid Software Development
Software Engineering Rapid Software Development Based on Software Engineering, 7 th Edition by Ian Sommerville Objectives To explain how an iterative, incremental development process leads to faster delivery
A Capability Maturity Model (CMM)
Software Development Life Cycle (SDLC) and Development Methods There are some enterprises in which a careful disorderliness is the true method. Herman Melville Capability Maturity Model (CMM) A Capability
TRADITIONAL VS MODERN SOFTWARE ENGINEERING MODELS: A REVIEW
Year 2014, Vol. 1, issue 1, pp. 49-56 Available online at: http://journal.iecuniversity.com TRADITIONAL VS MODERN SOFTWARE ENGINEERING MODELS: A REVIEW Singh RANDEEP a*, Rathee AMIT b a* Department of
AGILE vs. WATERFALL METHODOLOGIES
AGILE vs. WATERFALL METHODOLOGIES Introduction Agile and waterfall are two major methodologies that software developers and project managers have the option of using. Some of the goals of developers and
www.testing-solutions.com TSG Quick Reference Guide to Agile Development & Testing Enabling Successful Business Outcomes
www. TSG Quick Reference Guide to Agile Development & Testing Enabling Successful Business Outcomes What is Agile Development? There are various opinions on what defines agile development, but most would
Agile Project Management By Mark C. Layton
Agile Project Management By Mark C. Layton Agile project management focuses on continuous improvement, scope flexibility, team input, and delivering essential quality products. Agile project management
Agile So)ware Development
Software Engineering Agile So)ware Development 1 Rapid software development Rapid development and delivery is now often the most important requirement for software systems Businesses operate in a fast
On the Edge of Mobility Building a Bridge to Quality October 22, 2013
Copyright 2013 Vivit Worldwide On the Edge of Mobility Building a Bridge to Quality October 22, 2013 Brought to you by Copyright 2013 Vivit Worldwide Hosted by Stephanie Konkoy Americas Chapter/SIG Liaison
Agile Software Engineering Practice to Improve Project Success
Agile Software Engineering Practice to Improve Project Success Dietmar Winkler Vienna University of Technology Institute of Software Technology and Interactive Systems [email protected]
Quality Assurance in an Agile Environment
Quality Assurance in an Agile Environment 1 Discussion Topic The Agile Movement Transition of QA practice and methods to Agile from Traditional Scrum and QA Recap Open Discussion www.emids.com 2 What is
The Importance of Continuous Integration for Quality Assurance Teams
The Importance of Continuous Integration for Quality Assurance Teams Without proper implementation, a continuous integration system will go from a competitive advantage for a software quality assurance
HP Agile Manager What we do
HP Agile Manager What we do Release planning Sprint planning Sprint execution Visibility and insight Structure release Define teams Define release scope Manage team capacity Define team backlog Manage
Testing in Agile methodologies easier or more difficult?
Testing in Agile methodologies easier or more difficult? Lucjan Stapp Warsaw University of Technology Stowarzyszenie Jakości Systemów Informatycznych [email protected] [email protected] Professor in
