Changes for page Testable Design
Last modified by chrisby on 2024/09/19 10:50
Summary
-
Page properties (1 modified, 0 added, 0 removed)
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.**