Changes for page Testable Design

Last modified by chrisby on 2024/09/19 10:50

From version 4.1
edited by chrisby
on 2024/09/19 10:50
Change comment: Renamed back-links.
To version 3.11
edited by chrisby
on 2023/11/28 23:08
Change comment: There is no comment for this version

Summary

Details

Page properties
Content
... ... @@ -26,7 +26,7 @@
26 26  #### Dependency Management
27 27  
28 28  * **Low number of dependencies** in a unit for low complexity.
29 -* **Dependencies are injectable** via [[constructor injection or setter injection|doc:Software Engineering.Hidden.Architecture.Dependency Injection.Types of Dependency Injection.WebHome]].
29 +* **Dependencies are injectable** via [[constructor injection or setter injection|doc:Software Engineering.Architecture.Dependency Injection.Types of Dependency Injection.WebHome]].
30 30   * 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.
31 31   * Injectable promotes decoupling. Dependency injection allows for more flexible and extensible code through interchangeable dependencies.
32 32  * **Favor dependency injection over service lookups.**