How do you handle TDD in the continuous integration? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-16T15:32:45Z http://stackoverflow.com/feeds/question/152579 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/152579/how-do-you-handle-tdd-in-the-continuous-integration 2 How do you handle TDD in the continuous integration? Petr Macek 2008-09-30T10:59:40Z 2009-01-06T11:25:51Z <p>Imagine you are implementing the user story containing various new features and adding complexity to the code base. The existing code is quite well covered and you have just decided upon interfaces. You are starting to implement the functionality starting with tests. </p> <p>Now you have fairly complex test cases based on the requirements but the implementation is nowhere near the point when you are able to commit to the SCM fully working code and many test are failing (as they should).</p> <p>There is an assumption that in continuous integration all builds should be green if possible and thus you shouldn't commit as you would break the build. But you also shouldn't <a href="http://www.codinghorror.com/blog/archives/001134.html" rel="nofollow">"Go dark"</a> and keep such amount of code for yourself...</p> <p>What is the suggested procedure in such situation?</p> http://stackoverflow.com/questions/152579/how-do-you-handle-tdd-in-the-continuous-integration/152603#152603 4 Answer by Hristo Deshev for How do you handle TDD in the continuous integration? Hristo Deshev 2008-09-30T11:11:26Z 2008-09-30T11:11:26Z <p>Do not decide on <em>all</em> interfaces beforehand. Develop incrementally in a typical TDD rhythm: write a test; make the test pass; refactor. That should keep everything in good shape, the bar will always be green and you can check code in without worrying that you will break the build.</p> <p>It requires a different style of writing code, but you will get used to the rhythm eventually.</p> http://stackoverflow.com/questions/152579/how-do-you-handle-tdd-in-the-continuous-integration/152640#152640 1 Answer by Rob Wells for How do you handle TDD in the continuous integration? Rob Wells 2008-09-30T11:28:45Z 2008-09-30T11:28:45Z <p>What about skipping those tests that you know won't pass because the functionality is currently missing?</p> <p>Make it obvious that you are skipping the tests too! Really make it scream "like a stuck pig", as they say in Oz! (-:</p> <p>As you add functionality, enable the associated tests and keep "your bar green!"</p> <p>Here's <a href="http://www.pragmaticprogrammer.com/the-pragmatic-programmer/extracts/software-entropy" rel="nofollow">another great article</a> over at The Pragmatic Programmers that covers making broken windows obvious to others.</p> <p>HTH</p> <p>cheers,</p> <p>Rob</p>