Changes for page Testable Design

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

From version 1.6
edited by chrisby
on 2023/05/29 20:44
Change comment: There is no comment for this version
To version 1.7
edited by chrisby
on 2023/05/30 17:36
Change comment: There is no comment for this version

Summary

Details

Page properties
Content
... ... @@ -13,7 +13,7 @@
13 13  
14 14  === Additional Details ===
15 15  
16 -* **Minimization of direct instantiation of objects** in units being tested; doing so tightly couples the implementation and restricts substitutability. Use **factories** and **dependency injections** instead.
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.**
18 18  * **Avoid reflections** undermining encapsulation.
19 19  * **Avoid method chaining**, which can make it difficult to replace module dependencies.