xp and tdd
play

XP and TDD Extreme Programming and Test Driven Development Andreas - PowerPoint PPT Presentation

XP and TDD Extreme Programming and Test Driven Development Andreas Leitner Chair of Software Engineering ETH Zurich May 10, 2007 Chair of Software Engineering Goal Have overview of software development processes Understand what


  1. XP and TDD Extreme Programming and Test Driven Development Andreas Leitner Chair of Software Engineering ETH Zurich May 10, 2007 Chair of Software Engineering

  2. Goal ◮ Have overview of software development processes ◮ Understand what extreme programming is ◮ Understand what unit testing is ◮ Understand what test driven development is ◮ Differentiate the latter from test first development Chair of Software Engineering

  3. Outline Development Processes Overview Extreme Programming Unit Testing Test Driven Development Chair of Software Engineering

  4. Outline Development Processes Overview Extreme Programming Unit Testing Test Driven Development Chair of Software Engineering

  5. Development Processes Overview ◮ Traditional Methods ◮ Waterfall model ◮ V model ◮ Spiral model ◮ Prototype model ◮ ... ◮ Agile Methods ◮ Extreme Programming ◮ Test Driven Development ◮ ... Chair of Software Engineering

  6. Waterfall model Chair of Figure from: Wikipedia Software Engineering

  7. V model System System Requirements Integration Software Acceptance Requirements Testing Preliminary Integration Design Testing Detailed Unit Design Testing Implementation Chair of Software Engineering

  8. Defect Cost Relative cost to correct a defect 70 60 50 40 30 20 10 0 Requirements Design Code Development Acceptance Operation Testing Testing Source: Barry W. Boehm, Software Engineering Economics, Prentice Hall, 1981 Chair of Software Engineering

  9. Spiral model Figure from: Ghezzi, Jazayeri, Mandrioli, Software Engineering, 2nd edition, Prentice Hall Chair of Software Engineering

  10. Project Management ◮ Programming competence varies greatly ◮ 1:10 in a single group (Sackman, Erikson, Grant) ◮ Who introduces more bugs? ◮ Experienced Developers ◮ Beginners Chair of Software Engineering

  11. Outline Development Processes Overview Extreme Programming Unit Testing Test Driven Development Chair of Software Engineering

  12. XP: Motivation ◮ Schedule slips ◮ Project canceled ◮ Systems go sour ◮ Defect rate ◮ Doesn’t solve actual problem ◮ Business changes ◮ False feature rich ◮ Staff turnover Chair of Software Engineering

  13. XP: Cost of Change cost of change traditional XP time Chair of Software Engineering

  14. XP: Rules ◮ The planning game ◮ Small Releases ◮ Metaphor ◮ Simple Design ◮ Testing ◮ Refactoring ◮ Pair programming ◮ Collective Ownership ◮ Continuous Integration ◮ 40h-Week ◮ On-Site Customer ◮ Coding Standards Chair of Software Engineering

  15. XP: Programming in the Wild ◮ Is XP like “programming in the wild”? Chair of Software Engineering

  16. Outline Development Processes Overview Extreme Programming Unit Testing Test Driven Development Chair of Software Engineering

  17. Kinds of Testing ◮ Unit testing ◮ Integration testing ◮ System testing ◮ Acceptance testing ◮ Regression testing Chair of Software Engineering

  18. Unit testing ◮ Tools ◮ SUnit – Smaltalk (first one) ◮ JUnit – Java (www.junit.org) ◮ cppunit – C++ ◮ PyUnit – Python ◮ ... Chair of Software Engineering

  19. JUnit: Example @Test public void simpleAdd ( ) { Money m12CHF= new Money(12 , "CHF" ) ; Money m14CHF= new Money(14 , "CHF" ) ; Money expected= new Money(26 , "CHF" ) ; Money r e s u l t = m12CHF. add (m14CHF) ; assertTrue ( expected . equals ( r e s u l t ) ) ; } ◮ outcome: pass or fail Chair of Software Engineering

  20. Good Test Cases ◮ Test Case passes, the software is good? ◮ Test Case fails, the software is bad? ◮ Revealing failure? ◮ Revealing potential failures? ◮ Satisfying coverage criteria? Chair of Software Engineering

  21. Testivus On Test Coverage by JUnit Factory, Alberto Savoia Early one morning, a programmer asked the great master: “I am ready to write some unit tests. What code coverage should I aim for?” The great master replied: “Don’t worry about coverage, just write some good tests.” The programmer smiled, bowed, and left. Chair of Software Engineering

  22. Testivus On Test Coverage Later that day, a second programmer asked the same question. The great master pointed at a pot of boiling water and said: “How many grains of rice should put in that pot?” The programmer, looking puzzled, replied: “How can I possibly tell you? It depends on how many people you need to feed, how hungry they are, what other food you are serving, how much rice you have available, and so on.” “Exactly,” said the great master. The second programmer smiled, bowed, and left. Chair of Software Engineering

  23. Testivus On Test Coverage Toward the end of the day, a third programmer came and asked the same question about code coverage. “Eighty percent and no less!” Replied the master in a stern voice, pounding his fist on the table. The third programmer smiled, bowed, and left. Chair of Software Engineering

  24. Testivus On Test Coverage After this last reply, a young apprentice approached the great master: “Great master, today I overheard you answer the same question about code coverage with three different answers. Why?” The great master stood up from his chair: “Come get some fresh tea with me and let’s talk about it.” After they filled their cups with smoking hot green tea, the great master began to answer: Chair of Software Engineering

  25. Testivus On Test Coverage “The first programmer is new and just getting started with testing. Right now he has a lot of code and no tests. He has a long way to go; focusing on code coverage at this time would be depressing and quite useless. He’s better off just getting used to writing and running some tests. He can worry about coverage later.” “The second programmer, on the other hand, is quite experience both at programming and testing. When I replied by asking her how many grains of rice I should put in a pot, I helped her realize that the amount of testing necessary depends on a number of factors, and she knows those factors better than I do – it’s her code after all. There is no single, simple, answer, and she’s smart enough to handle the truth and work with that.” Chair of Software Engineering

  26. Testivus On Test Coverage “I see,” said the young apprentice, “but if there is no single simple answer, then why did you answer the third programmer ’Eighty percent and no less’?” The great master laughed so hard and loud that his belly, evidence that he drank more than just green tea, flopped up and down. “The third programmer wants only simple answers – even when there are no simple answers ... and then does not follow them anyway.” The young apprentice and the grizzled great master finished drinking their tea in contemplative silence. Chair of Software Engineering

  27. Outline Development Processes Overview Extreme Programming Unit Testing Test Driven Development Chair of Software Engineering

  28. TDD: Overview ◮ Evolutionary approach to development ◮ Combines ◮ Test-first development ◮ Refactoring ◮ Primarily a method of software design ◮ Not just method of testing Chair of Software Engineering

  29. TDD: The Process Chair of Software Engineering

  30. TDD = TFD + Refactoring ◮ Apply test-first development ◮ Refactor whenever you see fit (before next functional modification) ◮ Think for the moment: ◮ Write new business code only when a test case fails ◮ Eliminate any duplication you find ◮ Produce failure revealing test cases Chair of Software Engineering

  31. TDD and Extreme Programming ◮ Easy to give in and skip some test cases ◮ Pair-programming can help ◮ Writing testable code helps Chair of Software Engineering

  32. TDD: Consequences ◮ Incremental development ◮ Development environment must provide rapid response to small changes ◮ Components are designed highly cohesive, loosely coupled ◮ Developers learn to write good unit tests: ◮ Run fast ◮ Run in isolation ◮ Use data that makes test case easy to read ◮ Each test case is step towards overall goal Chair of Software Engineering

  33. TDD & Documentation ◮ Programmers often do not read documentation ◮ Instead, they look for examples and play with them ◮ Good unit tests can serve as ◮ Examples ◮ Documentation Chair of Software Engineering

  34. TDD: pros and cons ◮ Pros ◮ Reduce gap between decision and feedback ◮ Encourage developers to write code that is easily tested ◮ Creates a thorough test bed ◮ Drawbacks ◮ Time taken away from core development ◮ Some code is difficult to test Chair of Software Engineering

  35. References ◮ Kent Beck: Agile software development: principles, patterns, and practices. Addision Wesley, 2003 ◮ Astels: Test Driven Development: A Practical Guide, Prentice Hall, 2003 ◮ Kent Beck: Extreme Programming Explained, Addision Wesley, 2000 ◮ Bertrand Meyer: Practice to perfect: the quality first model, IEEE Computer, 30, 5, pages 102-103, 105-106, 1997 ◮ Andrew Hunt: The Pragmatic Programmer: from journeyman to master. Addision Wesley, 2000 ◮ Kent Beck: Extreme Programming explained. Addision Wesley, 2000 ◮ by Alberto Savoia: The Way of Testivus. JUnit Factory webpage Chair of Software Engineering

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend