cyber-dojo
Articles and videos
- The Three Laws of TDD. by (October 7th, 2005) ► defines the TDD process and explains its big advantages.
- An Introduction to Test Driven Development in C# by (January 19th, 2008) ► A quick introduction to TDD using C# and NUnit.
- Evolutionary architecture and emergent design: Test-driven design, Part 1 — Allowing tests to drive and improve your design🗑️ by (February 24th, 2009) ► The author tries to convince that writing tests first results into a better design.
- ↪Evolutionary architecture and emergent design: Test-driven design, Part 2 — More on allowing tests to drive and improve your design🗑️ by (April 7th, 2009) ► The continuation of the previous article.
- The Transformation Priority Premise by (December 19th, 2010) ► proposes a prioritised list of transformations (giving higher priority to simpler transformations) to be applied when the code must be changed to get the last added test green. Each transformation results in a more generic code. He claims that, by privileging the simplest transformations, the risk of an impasse (i.e. having to rewrite an important part of the production code in order to get the next test green) is reduced.
- ↪Robert C Martin - The Transformation Priority Premise↑ by (June 8th, 2011) ► A speech with the same content as the previous article.
- J.B. Rainsberger↑ by (February 28th, 2012) ► Another introduction, this one in Java.
- MountainWest RubyConf 2013 Trolls of 2013 by Ryan Davis by (April 4th, 2013) ► Writing an interpreter in Ruby while using TDD. finishes with a lightning talk, presenting Flay, a code analysis tool detecting similar code pieces.
- Straw Man TDD by (May 17th, 2013) ► Refuting some arguments about TDD.
- Ian Cooper: TDD, where did it all go wrong↑ by (June 2013) ► Coming back to the initial ideas of with some good advice on how to do TDD.
- Larry and Jen do Roman Numerals in C++ by and (July 19th, 2013) ► An example of C++ TDD.
- The Right Tests in the Wrong Order by (August 18th, 2013) ► The order of the tests will have an important impact on the final production code. This article does not help determining this order. Its main conclusion if that if too much code must be changed for getting the next test green, the developer should back up and consider another approach.
- What Really Matters in Test-Driven Development — It isn't about the tests -- it's about the feedback. by (August 28th, 2013) ► More than writing tests first, the important point is to have a very short code / test loop.
- Test First by (September 23rd, 2013) ► Tests should be written first, clean first, maintain first.
- The Domain Discontinuity by (January 14th, 2014) ► Architecture is an up-front decision and is expensive to change after; code design is driven by the tests and is continuously refactored.
- When Should You Think? by (March 11th, 2014) ► When to think: before, during and after coding. An answer to those who claim that TDD results into developers not thinking enough.
- When TDD doesn't work. by (April 30th, 2014) ► TDD cannot be used for the physical boundary and the layer just before it, this one should be as thin as possible, business logic should be moved elsewhere.
- Professionalism and TDD (Reprise) by (May 2nd, 2014) ► TDD may have the same impact, in the future, on the software industry as washing hands had on medicine.
- Test-Driving the Game Loop pt. 1 by (August 18th, 2014) ► Applying TDD to the classical game loop. This is typical the case where you can wonder if you are testing too much give the simplicity of the production code.
- ↪Test-Driving the Game Loop pt. 2 by (October 14th, 2014) ► This is the continuation of the previous blog. Code is getting less trivial, tests are making sense.
- Test Time by (September 3rd, 2014) ► explains that tests must be fast and the design should be such to enable this. (This gets back to DHH who explains that design should not be corrupted for the only purpose of getting fast tests.)
- Thorns around the Gold by (November 19th, 2014) ► advices to write first tests for exceptional behaviours, then degenerate behaviours, then ancillary behaviours, before testing the core feature.
- The Cycles of TDD by (December 17th, 2014) ► The coding cycle levels: the three laws of TDD for the seconds cycle, Red/Green/Refactor for the minutes cycle, the specific/generic transform for the 10 minutes cycles, and the Clean Architecture for the hours cycle.
- Test-Driven Development is Stupid by (February 21st, 2015) ► The guy writes against TDD, he gets some buzz and a lot of hate mails, then he understands he does not know what is TDD.
- The MODE-B Imperative by (February 21st, 2015) ► wrote a PDP8 emulator and explains the difference between the very long code / compile / test loop of that time, which required carefulness and deliberateness, and the same loop which must be keep very short today.
- An External Replication on the Effects of Test-driven Development Using a Multi-site Blind Analysis Approach by , , , , , , , , and (September 2016) ► A inconclusive study on the analysis of TDD. But the study conditions (the implementation of a very small piece of software) were probably not adequate to demonstrate something.
- ↪TDD Doesn't Work by (November 10th, 2016) ► analyses the previous study.
- Dijkstra's Algorithm by (October 26th, 2016) ► An example of using TDD. The exercise is interesting: the whole algorithm is done in a single final step…
- TDD Lesson - Terrain Generation by (January 9th, 2017) ► Writing unit tests spying the actions of the production code.
- Symmetry Breaking by (March 7th, 2017) ► The analogy between TDD and accounting, and the difference due to the fact that, contrarily to credit / debit, production code / test code cannot be written in any order, test must be written first.
- What I’m talking about when I talk about TDD by (August 25th, 2017) ► TDD allows the author to test different designs without having to keep in mind all the details during that time.
- Excuses by (December 18th, 2017) ► There is nothing new in this blog which describes once again the analogy between TDD and accounting, and tries to use it to kill the anti-TDD arguments.
- Five Underplayed Premises Of TDD by (January 17th, 2018) ► The title says it all, but these basis ideas are applicable to software development in general, they are not specific to TDD.
- ↪The Citizenship Argument by (January 18th, 2018) ► Some comments about the previous video, but this is the usual rant about TDD and good citizenship.
- TDD ça ralentit ? Regarde ça, tu vas changer d'avis !↓ by (July 3rd, 2018) ► A demo of TDD on the look-and-say sequence, but the final code is not clean (in my opinion).
- When Test Driven Development Goes Wrong • Dave Farley • GOTO 2021 by (May 7th, 2021) ► Some examples of tests which have been very badly driven, because the code is badly designed.
- Test-Driven Development Is Still Alive and Well — But TDD might not be the right fit for every developer. by (October 5th, 2021) ► A usual summary of the benefits of TDD reported by some persons praticing it.
- The 3 Types of Unit Test in TDD • Dave Farley • GOTO 2022 by (December 2nd, 2022) ► Test returned value vs. test state change vs. test interaction with another component (with a description of stub, fake, spy, and mock).
- TDD Isn't Design — It's Design Feedback by (December 7th, 2023) ► TDD does not generate the design, but provides a way to quickly test an interface design decision without making implementation design decisions.
- Canon TDD by (December 11th, 2023) ► Yet another description of the TDD process.
- TDD's Missing Skill: Behavioral Composition by (March 29th, 2024) ► Applying TDD requires that you are able to split the behaviour of the system into pieces before starting to implement it.
-
Detroit school vs. London school
- Test Driven Development Wars: Detroit vs London, Classicist vs Mockist by (October 31st, 2018) ► A clear but oversimplied description of the two schools.
- London vs Chicago by (October 17th, 2019) ► A short list of the advantages and disadvantages of both methods.
- Detroit and London Schools of Test-Driven Development↑ by (June 8th, 2020) ► A long analysis of the two styles of TDD.
- TDD : Inside Out, Outside In, démêlons le sujet by (February 11th, 2021) ► This article is a not-so-clear summary of what is commonly said about the two schools.
- Are You Chicago Or London When It Comes To TDD? by (September 14th, 2022) ► A description of the two schools.
-
Brett L. Schuchert
-
RPN calculator in Java using Eclipse
- Getting Started with Tdd in Java using Eclipse by (March 30th, 2010) ► A rather slow but clear introduction to TDD using Java and Eclipse: creating a RPN calculator.
- ↪Adding Basic Operators to the RpnCalcualtor by (March 30th, 2010) ► Adding add, subtract and factorial to the previous example.
- ↪Removing Duplication and the Ocp by (March 31st, 2010) ► Modifying the API of the previously implemented operators.
- ↪Extracting to strategy by (March 31st, 2010) ► Implementing the Strategy pattern.
- ↪Removing Duplication by Refactoring by (April 2nd, 2010) ► Factoring common code into a base class and adding multiply.
- ↪Removing Duplication Via TDD using Mockito by (April 2nd, 2010) ► Using Mockito, a mocking framework.
- ↪Introducing an Abstract Factory by (April 2nd, 2010) ► Explaining how to use dependency injection to be able to mock a class.
- ↪Adding a Sum Operator by (April 4th, 2010) ► Using what has been done previously to add a sum operator.
- ↪Adding a Prime Factors Operator by (April 4th, 2010) ► Using human readable (kind of BDD) test naming.
- ↪Composing Math Operators and Programming the Calculator by (April 4th, 2010) ► An implementation of the composite pattern, but this does not teach new things about writing Unit Tests.
- ↪Using FitNesse to Program The Calculator by (April 4th, 2010) ► A short demonstration on how to download, install, and write the fixtures for FitNesse.
-
Shunting Yard Algorithm in C# using Visual Studio and ReSharper
- Shunting Yard Algorithm in C#, Part 1 by (April 15th, 2010) ► A demonstration on using TDD in Visual Studio. The pace is quite fast.
- ↪Shunting Yard Algorithm in C#, Part 2 by (April 15th, 2010) ► Implementation of operator precedence.
- ↪Shunting Yard Algorithm in C#, Part 3 by (April 15th, 2010) ► Implementation of parentheses. The design is dubious and the way he adds division support is even more hacky: he does not add a simple test for this one.
- ↪Shunting Yard Algorithm in C#, Part 4 by (April 15th, 2010) ► Managing functions.
- Removing Duplicate Operator Representation, (part 6 of 4) by (April 16th, 2010) ► Defining the list of operators at a single place. His usage of regexp is very dubious.
-
RPN calculator in Java using Eclipse
-
Is TDD dead? (Martin Fowler’s notes)
- TDD is dead. Long live testing. by (April 23rd, 2014) ► TDD has been useful by making developer aware of the need for automated regression testing, but focusing only on fast unit tests appears now not as the best way to test software and make the design overly complex.
- Test-induced design damage by (April 29th, 2014) ► Changing the design in order to unit test all layers is damaging it.
- ↪Test Induced Design Damage? by (May 1st, 2014) ► An answer to the previous blog: separation of concerns is a good thing.
- Is TDD dead? by , , and (May 9th, 2014) ► TDD is more or less adequate, depending on the developer, depending on the situation. TDD is just one way to get self-testing code.
- ↪Is TDD dead? [Part II] by , , and (May 16th, 2014) ► Is (too much) decoupling bad design? Is bad design due to TDD?
-
↪TW Hangouts | Is TDD dead? [Part III] by , , and (May 20th, 2014) ► The tradeoffs of testing:
- Instant feedback is not possible, how much frequent should be the feedback we need?
- How accurate/fidelitous should be the tests?
- Lifespan? For how long will the software be used? With which probability?
Feedback is not only about knowing if the users are satisfied by the new feature, but also to know if there are some regressions with previously existing features and if the code base is still healthy.
TDD gave overconfidence to developers, they thought they could deliver quality software without someone else, such as a QA team, looking at it. TDD focused only on the test speed, without looking at what is traded of. Listening to feedback of real users is necessary, believing that the quality is good because all tests are green and the testing code coverage is 100% is an error. - ↪TW Hangouts | Is TDD dead? [Part IV] by , , and (May 27th, 2014) ► How much test is required? TDD advocates tend to say that tests are more important than the production code, this leads to refactoring being neglected.
- ↪TW Hangouts | Is TDD dead? [Part V & VI] by , , and (June 4th, 2014) ► Answering some questions (examples of open-source projects where TDD was successful or a failure, is there a way to write software so TDD would be redundant, TDD and inexperienced developers…) and concluding the debate.
- First by (May 19th, 2014) ► tries to participate to the "Is TDD dead?" debate. Tests provide some up-to-date documentation, force some decoupling in the design, and give confidence to change the code. They are so important that they must be done first.
- Is TDD Dead? Final Thoughts about Teams. by (June 17th, 2014) ► TDD is a team practice, not an individual choice. predicts that teams, then companies, will choose between TDD and non-TDD, and the first ones will win.
- Pecha Kucha @ OOP 2015 "Is TDD dead?" von Uncle Bob by (January 30th, 2015) ► is still upset to not having been invited to the discussion.
- TDD Harms Architecture by (March 3rd, 2017) ► A more constructive answer to the fact that TDD generates bad design: the design is defined by the developer, not by TDD.
-
Discovery Testing the Game of Life
- Discovery Testing the Game of Life (Part 1) by (September 9th, 2015) ► A high-level presentation of the differences between Detroit-school TDD and London-school TDD.
- ↪Discovery Testing the Game of Life (Part 2) by (September 9th, 2015) ► Coding the high level of the application.
- ↪Discovery Testing the Game of Life (Part 3)↓ by (September 10th, 2015) ► The continuation of the development is getting very painful.
- ↪Discovery Testing the Game of Life (Part 4)↓ by (September 10th, 2015) ► … and we get an application which is far from being finished, is overly complex (a bunch of small simple classes), and much slower and memory consumming than necessary. A pragmatic implementation of the game of life would be simpler, faster and use less memory. This series is just the proof that TDD can result in a stupid implementation.