DEV Community

Cover image for Test Driven Development (Uncle Bob)
Tyler Steck
Tyler Steck

Posted on

Test Driven Development (Uncle Bob)

Uncle Bob (Robert C. Martin) is a well-known software engineer and author who has written extensively about software development best practices, including Test Driven Development (TDD).

TDD Rules

  1. You are not allowed to write any production code until you have first written a failing unit test.
  2. You are not allowed to write more of a unit test than is sufficient to fail, and not compiling is failing.
  3. You are not allowed to write more production code than is sufficient to pass the currently failing unit test.

These three rules form the core of TDD, and they provide a clear and structured approach to writing code. By following these rules, you can ensure that your code is thoroughly tested, that it meets the requirements, and that it is written in a modular and maintainable way.

Benefits of TDD

Following Uncle Bob's rules for TDD can offer several benefits, including:

  1. Improved code quality: By writing tests before writing code, you are forced to think through the problem and ensure that your code is correct and complete. This can lead to higher quality code that is less prone to bugs and defects.
  2. Better design: TDD encourages you to write code that is modular, flexible, and easy to test. This often leads to better overall software design and architecture.
  3. Faster development: While writing tests can take time upfront, it can ultimately save time in the long run. By catching bugs and defects early in the development process, you can avoid spending time later on debugging and fixing issues.
  4. Better collaboration: TDD can improve collaboration between team members by providing a shared understanding of the problem and ensuring that everyone is on the same page. Tests can also serve as a form of documentation, making it easier for others to understand your code.
  5. More confidence: When you have a comprehensive suite of tests, you can be more confident in your code and in the changes you make to it. This can lead to more productive development and faster iteration.

Overall, following Uncle Bob's rules for TDD can lead to higher quality code, better design, faster development, improved collaboration, and increased confidence.

Top comments (0)