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
-
... ... @@ -11,8 +11,8 @@ 11 11 12 12 === Additional Details === 13 13 14 -* **Minimization of direct instantiation of objects** in units being tested; doing so tightly couples the implementation and restricts substitutability. 15 -* **Favor factories anddependency injection over service lookups.**14 +* **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. 15 +* **Favor dependency injection over service lookups.** 16 16 * **Avoid reflections** undermining encapsulation. 17 17 * **Avoid method chaining**, which can make it difficult to replace module dependencies. 18 18 * **Avoid using final and static methods**, as they cannot be overridden and reduce testability. This is especially important for methods that may require mocking.