Changes for page Testable Design
Last modified by chrisby on 2024/09/19 10:50
Summary
-
Page properties (2 modified, 0 added, 0 removed)
Details
- Page properties
-
- Syntax
-
... ... @@ -1,1 +1,1 @@ 1 - XWiki2.11 +Markdown 1.2 - Content
-
... ... @@ -1,17 +1,17 @@ 1 - ==What Makes Code Testable?==1 +## What Makes Code Testable? 2 2 3 - ===Core aspects===3 +### Core aspects 4 4 5 5 * **Object-Oriented**: Although both procedural and functional programming paradigms support testing, managing test complexity can become a challenge as the system scales. As complexity increases, maintaining test isolation becomes more difficult. An effective strategy is to use object-oriented techniques that encapsulate complex logic within hierarchies of classes, creating testable units that hide their internal complexity behind interfaces. Wrapping procedural or functional code in classes can combine the strengths of several paradigms. Any code base that reaches a certain level of complexity can benefit from an object-oriented approach to improve testability. 6 6 * **Minimal number of dependencies** in a unit for low complexity. 7 -* **Dependencies are injectable** via [[constructor injection or setter injection >>doc:Software Engineering.Architecture.Dependency Injection.Types of Dependency Injection.WebHome]].8 -* *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.9 -* *Injectable promotes decoupling. Dependency injection allows for more flexible and extensible code through interchangeable dependencies.7 +* **Dependencies are injectable** via [[constructor injection or setter injection|doc:Software Engineering.Architecture.Dependency Injection.Types of Dependency Injection.WebHome]]. 8 + * 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. 9 + * Injectable promotes decoupling. Dependency injection allows for more flexible and extensible code through interchangeable dependencies. 10 10 * **Outsource code that is difficult to test.** For example, network connections to external services should not be part of unit or component tests and should therefore be mocked away. 11 11 12 - ======12 +### 13 13 14 - ===Additional Details===14 +### Additional Details 15 15 16 16 * **Avoid direct instantiation of objects** in units being tested; doing so tightly couples the implementation and restricts substitutability. Use **factories** and **dependency injections** instead. 17 17 * **Favor dependency injection over service lookups.** ... ... @@ -22,17 +22,17 @@ 22 22 * **No business logic in constructors and static initialization blocks.** Unnecessary logic could be inadvertently executed, or unexpected side effects could occur when a subclass calls the superclass constructor. Instead, place this logic in methods or other objects that can be replaced. 23 23 * For third-party libraries and immutable, untestable code, create **intermediate wrappers with testable interfaces** for better mockability. 24 24 * **Modular design**: 25 -* *Create distinct, small modules, each with unique functionality and responsibilities. This ensures that changes in one module are isolated from others.26 -* *Maintain loose coupling: Minimize the dependencies between modules.27 -* *Develop self-contained modules: Each module should be a self-contained unit of functionality. New features should be introduced by creating new modules.25 + * Create distinct, small modules, each with unique functionality and responsibilities. This ensures that changes in one module are isolated from others. 26 + * Maintain loose coupling: Minimize the dependencies between modules. 27 + * Develop self-contained modules: Each module should be a self-contained unit of functionality. New features should be introduced by creating new modules. 28 28 * **Avoid the singleton design pattern** because its private constructor prevents mocking. Consider a getInstance() method that returns an interface type instead. 29 29 * **Favor composition over inheritance.** Use inheritance only for polymorphism, as it is less flexible than composition. Composition should be the primary approach to code reuse. 30 30 31 - ======31 +### 32 32 33 - ===Testable Architecture===33 +### Testable Architecture 34 34 35 35 An important part of a testable architecture is the **Humble Object Pattern**. The pattern emphasizes the isolation of complex to test aspects (such as GUI interactions), keeping them 'humble' with minimal logic: 36 36 37 -* **Minimize thelogic of hard-to-test layers** such as GUIsand adapters to keep them as thin as possible, focusing primarily on user interaction, routing, and data transformation.38 -* **Maximize business logic**: Wherereasonablypossible,move logic to the business logic/service layer, which is easier to test, improving overall testability.37 +* **Minimize logic of hard-to-test layers** such as GUIs to keep them as thin as possible, focusing primarily on user interaction, routing, and data transformation. 38 +* **Maximize business logic**: You can move logic to the business logic/service layer, which is easier to test, improving overall testability.