Testable Design

Version 1.1 by chrisby on 2023/05/29 17:44

What Makes Code Testable?

  • Object-Oriented: While both procedural and functional programming paradigms can be tested, they often face a scalability problem. As the complexity of the system increases, testing isolated segments of code becomes increasingly difficult. One solution is to encapsulate this complex logic in an object-oriented hierarchy of classes. These classes can encapsulate the code and its associated complexity behind dependencies, creating isolated units that can be easily tested. The same procedural or functional code can easily be wrapped in classes, allowing object-oriented programming to combine the benefits of all programming paradigms. It's worth noting that for any code base that reaches a certain level of complexity, adopting an object-oriented approach can significantly improve its testability.
  • Classes Implement interfaces: The class implements a well-designed interface, just as large as necessary to satisfy its requirements.
  • Tests run against Interfaces, so the implementations details are not relevant as long as the results are correct.
  • Minimal number of dependencies in a unit for low complexity.
  • Dependencies are injectable via constructor injection or setter injection. Injectable is equivalent to mockable. Mocks make testing with dependencies much easier. IoC containers are good tools for building many applications consisting of classes into which dependencies need to be injected.
  • Dependencies are interfaces that can be implemented as 'mocks' for testing purposes, thus enabling the independent, concurrent development of software units. This aligns with the Dependency Inversion Principle (DIP), which promotes reliance on abstractions, not concretions.