Agile Testing Practices

Total Page:16

File Type:pdf, Size:1020Kb

Agile Testing Practices Agile Testing Practices Megan S. Sumrell Director of Transformation Services Valtech Introductions About us… Now about you… Your name Your company Your role Your experience with Agile or Scrum? Personal Expectations Agenda Introductions Agile Overview Traditional QA Teams Traditional Automation Approaches Role of an Agile Tester Testing Activities Refine Acceptance Criteria TDD Manual / Exploratory Testing Defect Management Documentation Performance Testing Regression Testing Agenda Continued Test Automation on Agile Teams Testing on a Greenfield Project Testing on a Legacy Application Estimation Sessions Sprint Planning Meetings Retrospectives Infrastructure Skills and Titles Closing Agile Overview Agile Manifesto "We are uncovering better ways of developing software by doing it and helping others do it. Through this work we have come to value: Individuals and interactions over processes and tools Working software over comprehensive documentation Customer collaboration over contract negotiation Responding to change over following a plan That is, while there is value in the items on the right, we value the items on the left more." Scrum Terms and Definitions User Story: high level requirements Product Backlog: list of prioritized user stories Sprint : one cycle or iteration (usually 2 or 4 weeks in length) Daily Stand-up: 15 minute meeting every day to review status Scrum Master: owns the Scrum process and removes impediments Product Owner: focused on ROI and owns priorities on the backlog Pigs and Chickens Traditional QA Teams How are you organized? When do you get involved in the project? What does your “test phase” look like? What testing challenges do you have? Traditional Test Automation Automation Challenges Cost of tools Hard to learn Can’t find time Maintenance UI dependent Only a few people can run them Traditional Test Pyramid UNIT TESTS Business Rules GUI TESTS Will these strategies work in an Agile environment? Food for Thought……. “Tests play several pivotal roles during the software development process. First, tests unambiguously communicate how things are supposed to work. Second, they provide feedback on whether the system actually works the way it is supposed to work. Third, tests provide the scaffolding that allows developers to make changes throughout the development process…” Lean Software Development – Mary and Tom Poppendieck Role of An Agile Tester Role of “QA” on an Agile Team Testing starts with the specification, not verification Focus on acceptance criteria Focus on automation, not manual testing User Stories are not done until the automated acceptance tests are passing Forces the team to think about testability at the beginning Testing Activities Testing Activities Refine acceptance criteria Test Driven Development Manual / Exploratory Testing Defect Management Documentation Performance Testing Regression Testing Refine Acceptance Criteria Requirements vs. Tests Refine Acceptance Tests •Who? – Analysts, Testers, Developers, PO •How? – Collaborate! – Build executable requirements if possible •Why? – Avoids misinterpretation of the requirements – Full transparency into the test cases – Sets expectations ATDD: Acceptance Test Driven Development Development is driven by examples Acceptance testing happens before development starts Business facing tests Represent workflows and business logic rules Some Questions to Ask……. What else do the developers need to know about this user story? What can go wrong during the story? What am I assuming? Are there circumstances when this story may behave differently? Workshop: Let’s write some acceptance tests…. User Story: As a mathematician, I want to be able to use the calculator to divide numbers and get the answer so that I can solve problems. Acceptance Tests: Verify that the division is correct Verify that the answer is in ##.## format Workshop - continued User Story: As a user, I want to search for a name so that I can find that person’s phone number. Acceptance Tests: Search by first or last name ‘Like’ match search Results are in first name, last name, phone number order Test Driven Development TDD: Test Driven Development TDD is not unit testing TDD is not writing tests where it is easy to do it TDD is not testing after you have coded TDD is not manually testing your code TDD IS ABOUT TESTING FIRST TDD: Test Driven Development TDD is not magic To be effective, tests must be: • Accurate • Appropriate • Sufficient TDD: Test Driven Development TDD is a discipline that developers must adopt Testers can help educate developers on how to write good tests Developers tend to test what works Testers tend to look for what breaks Write the Test testDivideByZero extends TestCase { Calculator calc = new Calculator(); try { calc.divide(6, 0); fail(“No exception was thrown”); } catch(MathException e) { assertEquals(“Cannot divide by zero”, e.message()); } } Write the Code Before: public int divide(int divisor, int dividend) { return divisor / dividend; } Write the Code After: public int divide(int dividend, int divsor) { if (divisor == 0) throw new MathException(“Cannot divide by zero”); return divisor / dividend; } Refactor Remove duplication Improve implementation Simplify Exploratory Testing Exploratory Testing •Who? –Testers •How? – Paired testing •Why? – Ensure all negative or unusual paths are covered – Paired testing adds value Session Based Exploratory Testing James and Jonathan Bach – 2000 Consists of the following: Charter Session Session Report Debrief “Exploratory testing is simultaneous learning, test design, and test execution.” -James Bach Workshop - Create Charters Think about buying something on-line. What charters would you create for exploratory testing on an on-line checkout system Defect Management Defect Management •Who? – Testers (sometimes Analysts) •How? – Verify that unit tests were written – Add automated tests for the future •Why? – Ensure that the defects were fixed – Automate tests to ensure it doesn’t break again Documentation Workshop: Documentation What do you document on your agile teams? What are your test artifacts? Eliminate Waste Ensure all artifacts are valuable Don’t create things people won’t use Don’t Repeat Yourself (DRY) If a test can take the replace of a requirements document, don’t write both Don’t do more than is necessary If a wireframe sketch is sufficient to describe a GUI, don’t spend the time and money to create a photo-realistic mock-up Performance Testing Performance Testing •Who? – Performance Testers •How? – Map test cases to performance requirements •Why? – Uncover performance issues early!!! Regression Testing How can you regression test every iteration? Automation (lots and lots of it!) Should happen every day Immediate feedback when code changes are made Test Automation on Agile Teams Agile Test Pyramid GUI TESTS Business Rules UNIT TESTS Automate Acceptance Tests •Who? – Testers and Developers •How? – Collaborate! – Work to automate defined acceptance tests •Why? – Allows everyone to track progress – Ensures requirements are met – Allows for fast, easy regression testing More Reasons Why We Tackle Automation this Way…. Test First Start automation without the UI Involves entire team in testing Involves customer in testing Visibility of results Avoid gold plating Leads to good architecture and design Tests are easy to read Collapse the V model Testing code is minimal And more……. Executable Requirements Think back to our requirement vs. test conversation….. Let’s see this in action FitNesse Unit vs. GUI vs. FitNesse GUI GUI specific TESTING FitNesse Customer Oriented Code oriented UNIT TESTING FIT TABLE FIXTURE SYSTEM FitNesse has several fixture types… Column - calculations Row/Array – data sets Do/Action - workflow Action Database And more…. Anatomy of a Column Fixture First Row Identifies the Test/Requirement. This is the name of the fixture (the class) Division Numerator Denominator Quotient? 10 2 5 100 2.5 40 Second Row is the inputs and outputs. Expected outputs have the ? Or () after them, inputs do not Division Numerator Denominator Quotient? 10 2 5 100 2.5 40 Each additional row is an instance of the test that explains the requirement we are testing Division Numerator Denominator Quotient? 10 2 5 100 2.5 40 Workshop: Write a Column Fixture User Story 1: As a mathematician, I want to be able to use the calculator to divide numbers and get the answer so that I can solve problems. Acceptance Tests: Verify that the division is correct Verify that the answer is in ##.## format Anatomy of a Row Fixture First Row Identifies the Other cells on the first row Test/Requirement. This is the represent inputs passed into name of the fixture (and the the fixture name of the class) ListofUsers Active FirstName LastName UserName John Smith Jsmith Beth Jones Bjones Suzy Plus splus The second row lists the data elements in the expected output ListofUsers Active FirstName LastName UserName John Smith Jsmith Beth Jones Bjones Suzy Plus splus The 3rd through nth rows list the data you expect the test to return ListofUsers Active FirstName LastName UserName John Smith Jsmith Beth Jones Bjones Suzy Plus splus Workshop: Write a Row Fixture User Story 3: As a user, I want to search for a name so that I can find their phone number. Acceptance Tests: Search by first or last name “Like” match search Results are in first name, last name, phone number Do Fixture Do fixtures should read like a story Used to test workflows Often tie to epics Each step in the do fixture likely has detailed tests elsewhere Let’s look at an example….
Recommended publications
  • Rugby - a Process Model for Continuous Software Engineering
    INSTITUT FUR¨ INFORMATIK DER TECHNISCHEN UNIVERSITAT¨ MUNCHEN¨ Forschungs- und Lehreinheit I Angewandte Softwaretechnik Rugby - A Process Model for Continuous Software Engineering Stephan Tobias Krusche Vollstandiger¨ Abdruck der von der Fakultat¨ fur¨ Informatik der Technischen Universitat¨ Munchen¨ zur Erlangung des akademischen Grades eines Doktors der Naturwissenschaften (Dr. rer. nat.) genehmigten Dissertation. Vorsitzender: Univ.-Prof. Dr. Helmut Seidl Prufer¨ der Dissertation: 1. Univ.-Prof. Bernd Brugge,¨ Ph.D. 2. Prof. Dr. Jurgen¨ Borstler,¨ Blekinge Institute of Technology, Karlskrona, Schweden Die Dissertation wurde am 28.01.2016 bei der Technischen Universitat¨ Munchen¨ eingereicht und durch die Fakultat¨ fur¨ Informatik am 29.02.2016 angenommen. Abstract Software is developed in increasingly dynamic environments. Organizations need the capability to deal with uncertainty and to react to unexpected changes in require- ments and technologies. Agile methods already improve the flexibility towards changes and with the emergence of continuous delivery, regular feedback loops have become possible. The abilities to maintain high code quality through reviews, to regularly re- lease software, and to collect and prioritize user feedback, are necessary for con- tinuous software engineering. However, there exists no uniform process model that handles the increasing number of reviews, releases and feedback reports. In this dissertation, we describe Rugby, a process model for continuous software en- gineering that is based on a meta model, which treats development activities as parallel workflows and which allows tailoring, customization and extension. Rugby includes a change model and treats changes as events that activate workflows. It integrates re- view management, release management, and feedback management as workflows. As a consequence, Rugby handles the increasing number of reviews, releases and feedback and at the same time decreases their size and effort.
    [Show full text]
  • Test Driven .NET Development with Fitnesse
    Test Driven .NET Development with FitNesse second edition Gojko Adzic Test Driven .NET Development with FitNesse: second edition Gojko Adzic Copy-editor: Marjory Bisset Cover picture: Brian Samodra Published 2009 Copyright © 2008-2009 Neuri Limited Many of the designations used by manufacturers and sellers to distinguish their products are claimed as trademarks. Where these designations appear in this book, and the publisher was aware of a trademark claim, the designations have been printed with initial capital letters or in all capitals. The author has taken care in the preparation of this book, but makes no expressed or implied warranty of any kind and assumes no responsibility for errors or omissions. No liability is assumed for incidental or consequential damages in connection with or arising out of the use of the information or programs contained herein. All rights reserved. This publication is protected by copyright, and permission must be obtained from the publisher prior to any prohibited reproduction, storage in a retrieval system, or transmission in any form or by any means, electronic, mechanical, photocopying, recording, or likewise. For information regarding permissions, write to: Neuri Limited 25 Southampton Buildings London WC2A 1AL United Kingdom You can also contact us by e-mail: [email protected] Register your book online Visit http://gojko.net/fitnesse and register your book online to get free PDF updates and notifications about corrections or future editions of this book. ISBN: 978-0-9556836-2-6 REVISION:2009-12-08 Preface to the second edition ........................................................... vii What's new in this version? ..................................................... vii Training and consultancy ................................................................ ix Acknowledgements ........................................................................
    [Show full text]
  • 2019 Stateof the Software Supply Chain
    2019 State of the Software Supply Chain The 5th annual report on global open source software development presented by in partnership with supported by Table of Contents Introduction................................................................................. 3 CHAPTER 4: Exemplary Dev Teams .................................26 4.1 The Enterprise Continues to Accelerate ...........................27 Infographic .................................................................................. 4 4.2 Analysis of 12,000 Large Enterprises ................................27 CHAPTER 1: Global Supply of Open Source .................5 4.3 Component Releases Make Up 85% of a Modern Application......................................... 28 1.1 Supply of Open Source is Massive ...........................................6 4.4 Characteristics of Exemplary 1.2 Supply of Open Source is Expanding Rapidly ..................7 Development Teams ................................................................... 29 1.3 Suppliers, Components and Releases ..................................7 4.5 Rewards for Exemplary Development Teams ..............34 CHAPTER 2: Global Demand for Open Source ..........8 CHAPTER 5: The Changing Landscape .......................35 2.1 Accelerating Demand for 5.1 Deming Emphasizes Building Quality In ...........................36 Open Source Libraries .....................................................................9 5.2 Tracing Vulnerable Component Release 2.2 Automated Pipelines and Downloads Across Software Supply Chains
    [Show full text]
  • Acceptance Testing How Cslim and Fitnesse Can Help You Test Your Embedded System
    Acceptance Testing How CSlim and FitNesse Can Help You Test Your Embedded System Doug Bradbury Software Craftsman, 8th Light Tutorial Environment git clone git://github.com/dougbradbury/c_learning.git cd c_learning ./bootstrap.sh or with a live CD: cp -R cslim_agile_package c_clearning cd c_learning git pull ./bootstrap.sh Overview Talk w/ exercises: Acceptance Tests Tutorial: Writing Acceptance tests Tutorial: Fitnesse Tutorial: CSlim Talk: Embedded Systems Integration Bonus Topics Introductions Who are you? Where do you work? What experience do you have with ... embedded systems? acceptance testing? FitNesse and Slim? Objectives As a result of this course you will be able to: Understand the purposes of acceptance testing; Use acceptance tests to define and negotiate scope on embedded systems projects; Integrate a CSlim Server into your embedded systems; Objectives (cont) As a result of this course you will be able to: Add CSlim fixtures to your embedded system; Write Fitnesse tests to drive the execution of CSlim fixtures; Write and maintain suites of tests in a responsible manner. Points on a star How many points does this star have? Star Point Specification Points on a star are counted by the number of exterior points. Points on a star How many points does this star have? By Example 3 5 9 Points on a star Now, how many points does this star have? Robo-draw Pick a partner ... Acceptance Testing Collaboratively producing examples of what a piece of software is supposed to do Unit Tests help you build the code right. Acceptance Tests
    [Show full text]
  • Measuring Test Data Uniformity in Acceptance Tests for the Fitnesse and Gherkin Notations
    Journal of Computer Science Original Research Paper Measuring Test Data Uniformity in Acceptance Tests for the FitNesse and Gherkin Notations Douglas Hiura Longo, Patrícia Vilain and Lucas Pereira da Silva Department of Informatics and Statistics, Federal University of Santa Catarina, Florianópolis, Brazil Article history Abstract: This paper presents two metrics designed to measure the data Received: 23-11-2020 uniformity of acceptance tests in FitNesse and Gherkin notations. The Revised: 24-02-2021 objective is to measure the data uniformity of acceptance tests in order Accepted: 25-02-2021 to identify projects with lots of random and meaningless data. Random data in acceptance tests hinder communication between stakeholders Corresponding Author: Douglas Hiura Longo and increase the volume of glue code. The main contribution of this Department of Informatics and paper is the implementation of the proposed metrics. This paper also Statistics, Federal University of evaluates the uniformity of test data from several FitNesse and Gherkin Santa Catarina, Florianópolis, projects found on GitHub, as a means to verify if the metrics are Brazil applicable. First, the metrics were applied to 18 FitNesse project Email: [email protected] repositories and 18 Gherkin project repositories. The measurements taken from these repositories were used to present cases of irregular and uniform test data. Then, we have compared the notations from FitNesse and Gherkin in terms of projects and features. In terms of projects, no significant difference was observed, that is, FitNesse projects have a level of uniformity similar to Gherkin projects. However, in terms of features and test documents, there was a significant difference.
    [Show full text]
  • Towards a Discipline for Agile Requirements
    Forging High-Quality User Stories: Towards a Discipline for Agile Requirements Garm Lucassen, Fabiano Dalpiaz, Jan Martijn E.M. van der Werf and Sjaak Brinkkemper Department of Information and Computing Sciences Utrecht University Email: g.lucassen, f.dalpiaz, j.m.e.m.vanderwerf, s.brinkkemper @uu.nl { } Abstract—User stories are a widely used notation for formulat- which will remain impossible to achieve in the foreseeable ing requirements in agile development. Despite their popularity in future [11]. industry, little to no academic work is available on determining Instead, tools that want to harness NLP are effective only their quality. The few existing approaches are too generic or employ highly qualitative metrics. We propose the Quality User when they focus on the clerical part of RE that a tool can Story Framework, consisting of 14 quality criteria that user perform with 100% recall and high precision, leaving thinking- stories should strive to conform to. Additionally, we introduce required work to human requirements engineers [6]. Addition- the conceptual model of a user story, which we rely on to ally, they should conform to what practitioners actually do, subsequently design the AQUSA tool. This conceptual piece of instead of what the published methods and processes advise software aids requirements engineers in turning raw user stories into higher quality ones by exposing defects and deviations from them to do [12]. User stories’ popularity among practitioners good practice in user stories. We evaluate our work by applying and simple yet strict structure make them ideal candidates. the framework and a prototype implementation to multiple case Throughout the remainder of this paper we make five studies.
    [Show full text]
  • User Stories.Book
    User Stories Applied for Agile Software Development Mike Cohn Boston • San Francisco • New York • Toronto • Montreal London • Munich • Paris • Madrid Capetown • Sydney • Tokyo • Singapore • Mexico City Chapter 2 Writing Stories In this chapter we turn our attention to writing the stories. To create good sto- ries we focus on six attributes. A good story is: • Independent • Negotiable • Valuable to users or customers •Estimatable •Small •Testable Bill Wake, author of Extreme Programming Explored and Refactoring Workbook, has suggested the acronym INVEST for these six attributes (Wake 2003a). Independent As much as possible, care should be taken to avoid introducing dependencies between stories. Dependencies between stories lead to prioritization and plan- ning problems. For example, suppose the customer has selected as high priority a story that is dependent on a story that is low priority. Dependencies between stories can also make estimation much harder than it needs to be. For example, suppose we are working on the BigMoneyJobs website and need to write stories for how companies can pay for the job openings they post to our site. We could write these stories: 1. A company can pay for a job posting with a Visa card. 2. A company can pay for a job posting with a MasterCard. 17 18 WRITING STORIES 3. A company can pay for a job posting with an American Express card. Suppose the developers estimate that it will take three days to support the first credit card type (regardless of which it is) and then one day each for the second and third.
    [Show full text]
  • User-Stories-Applied-Mike-Cohn.Pdf
    ptg User Stories Applied ptg From the Library of www.wowebook.com The Addison-Wesley Signature Series The Addison-Wesley Signature Series provides readers with practical and authoritative information on the latest trends in modern technology for computer professionals. The series is based on one simple premise: great books come from great authors. Books in the series are personally chosen by expert advi- sors, world-class authors in their own right. These experts are proud to put their signatures on the cov- ers, and their signatures ensure that these thought leaders have worked closely with authors to define topic coverage, book scope, critical content, and overall uniqueness. The expert signatures also symbol- ize a promise to our readers: you are reading a future classic. The Addison-Wesley Signature Series Signers: Kent Beck and Martin Fowler Kent Beck has pioneered people-oriented technologies like JUnit, Extreme Programming, and patterns for software development. Kent is interested in helping teams do well by doing good — finding a style of software development that simultaneously satisfies economic, aesthetic, emotional, and practical con- straints. His books focus on touching the lives of the creators and users of software. Martin Fowler has been a pioneer of object technology in enterprise applications. His central concern is how to design software well. He focuses on getting to the heart of how to build enterprise software that will last well into the future. He is interested in looking behind the specifics of technologies to the patterns, ptg practices, and principles that last for many years; these books should be usable a decade from now.
    [Show full text]
  • Selecting a Development Process: Choosing Among the Leading Alternatives Mike Cohn Mountain Goat Software [email protected]
    Selecting a Development Process: Choosing Among the Leading Alternatives Mike Cohn Mountain Goat Software [email protected] Copyright Mountain Goat Software, LLC 1 Mike Cohn - background Copyright Mountain Goat Software, LLC 2 Today’s agenda Considerations Team Software Proce ss Scrum Extreme Programming OpenUP/Basic Rational Unified Process Copyright Mountain Goat Software, LLC 3 Ceremony • The amount of formalism in a process • Documentation, method weight, reviews Few documents Many documents Few steps Formal steps Copyright Mountain Goat Software, LLC 4 Cycles Sequential • Number and length of iterations Few documents Many documents Few steps Formal steps Many short iterations (5 days) Copyright Mountain Goat Software, LLC 5 Placing the processes Sequential Few documents Many documents Few steps Formal steps Many short iterations (5 days) Copyright Mountain Goat Software, LLC 6 Today’s agenda Considerations Team Software Proce ss Scrum Extreme Programming OpenUP/Basic Rational Unified Process Copyright Mountain Goat Software, LLC 7 Team Software Process (TSP) • Created by Watts Humphrey • Of Software Engineering Institute and Capability Maturity Model (CMM) • Builds on his Personal Software Process • High discipline, highly defined • A “cyclic development strategy” • Another way of saying “iterative and incremental” Copyright Mountain Goat Software, LLC 8 Goals of the TSP 1. Build on the Personal Software Process 2. Develop products in cycles 3. Establish standard measures for quality and performance 4. Provide precise measures
    [Show full text]
  • San José State University Computer Science Department CS160, Software Engineering, Section 4, Spring 2018
    San José State University Computer Science Department CS160, Software Engineering, Section 4, Spring 2018 Course and Contact Information Instructor: Fain (Frank) Butt Office Location: MH212 Telephone: (408) 924-5060 Email: [email protected] Office Hours: TR 8:45 PM – 10:00 PM (by appointment) Class Days/Time: Section 4: TR 7:30 - 8:45 PM Classroom: MH222 Prerequisites: Prerequisite: CS 146, CS 151 (with a grade of "C-" or better in each); CS 100W (with a grade of "C" or better) Course Format All your programming project deliverable must be able to compile and run before packaging for submission. Otherwise you will not earn many points if we can’t verify your results. You are expected to spend 15-20 hours a week on homework and/or project. Faculty Web Page and MYSJSU Messaging Course syllabus and the rest of the course information will be published via Canvas. You are responsible for regularly checking with the messaging system through MySJSU and Canvas to learn of any updates. Course Description Software engineering principles, requirements elicitation and analysis, design, configuration management, quality control, project planning, social and ethical issues. Required team-based software development, including written requirements specification and design documentation, oral presentation, and tool use. Course Learning Outcomes (CLO) Upon successful completion of this course, students will be able to: 1. CLO 1 – Design and build a project from end to end 2. CLO 2 – Write a Requirement Document 3. CLO 3 – Write High-level and low-level designs 4. CLO 4 – Iterative Implementation 5. CLO 5 – Understanding Different Stages of Quality Assurance 6.
    [Show full text]
  • Architecting TIBCO Streambase Applications Unit 4 Functional Testing
    Architecting TIBCO StreamBase Applications Unit 4 Functional Testing © Copyright 2000-2014 TIBCO Software Inc. StreamBase Functional Testing Overview • Test Methodology and Tooling • Test Development Tasks • Types of Tests • Tool Overview • Functional Test Areas © Copyright 2000-2014 TIBCO Software Inc. 2 StreamBase Test Methodology and Tooling 3 © Copyright 2000-2013 TIBCO Software Inc. Test Methodology and Tooling Partial list taken from Project Methodology Unit: We Can Help. • by validating/ creating recipes for the application of SB specifics to the general rules • by establishing delivery team discipline around particularly important good practices that often fall by the wayside • by promoting systematic use of lifecycle tool support and integrating into customer SDLC practices and infrastructure © Copyright 2000-2014 TIBCO Software Inc. 4 StreamBase Functional Testing: Tasks 5 © Copyright 2000-2013 TIBCO Software Inc. Functional Testing Tasks • Test Development Tasks – Test Plan – Test Case Specification – Test Development – Test Data Generation • Functional Testing Infrastructure and DevOps Setup and Integration • CI Server Integration and SLAs • Regression Suite Initiation and Frequency, Results Review and Notification © Copyright 2000-2014 TIBCO Software Inc. 6 StreamBase Types of Tests 7 © Copyright 2000-2013 TIBCO Software Inc. Types of Application Testing • Functional Requirements Testing • System Integration Testing • Performance Testing and Tuning • Throughput Metrics • Latency Metric • This is a science; see performance unit © Copyright 2000-2014 TIBCO Software Inc. 8 More Types of Testing – Failover/Failback Testing • Application Server Failure • Inbound Messaging Server(s) Failover/Failure • Outbound Messaging Server(s) Failover/Failure • Persistence (RDBMS) Server Failover/Failure • Network Failure • Storage/Cache Failure – Disaster Recovery Testing – Stress Testing/Burn-in © Copyright 2000-2014 TIBCO Software Inc.
    [Show full text]
  • Best Agile Articles of 2017
    Best Agile Articles of 2017 Editors: Michael de la Maza, CEC & Cherie Silas, CEC BEST AGILE ARTICLES OF 2017 Edited By: Michael de la Maza, CEC & Cherie Silas, CEC Copyright ©2018 by Michael de la Maza All rights reserved. Printed in the United States of America. Cover design by Christopher Kyle Wilson The text of this book is set in Warnock Pro & Myriad Pro Book layout by THDesign, Inc. First Edition: November 2018 ii Table of Contents Foreword .................................................................................................................................................................................................Page vii Pete Behrens Lean Startup has Changed Nothing! ..................................................................................................Pages 9–13 Sonja Blignaut If you want to innovate, don’t say so ................................................................................................Pages 14–18 Melissa Boggs At the Intersection of Culture & Strategy ...................................................................................Pages 19–21 Zach Bonaker Scrum Guide Sliders ....................................................................................................................................Pages 22–26 Braz Brandt Agile in Highly Regulated Environments ....................................................................................Pages 27–30 Maxime Castera What Kids Taught Me About Being Agile...................................................................................Pages
    [Show full text]