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
-
... ... @@ -13,7 +13,7 @@ 13 13 14 14 === Additional Details === 15 15 16 -* ** Minimizationofdirect 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.