You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Magento also provides an automated testing suite that includes test scripts for integration, functional areas, and performance. Components include PHPUnit for the unit test framework and Selenium for the functional test framework.
42
42
43
-
This framework is included in Magento/mtf. For more information, see Magento Test Framework guide.
43
+
This framework is included in `Magento/mtf`. For more information, see Magento Test Framework guide.
Best practice: Use service contracts to communicate to the domain layer by passing data types through strongly typed objects. This practice can help you avoid the need to replace presentation layer code when replacing business layer logic.
103
100
@@ -112,7 +109,7 @@ There are three primary ways of accessing a module's domain-layer code:
112
109
113
110
* Service contracts are the recommended way for one module to access another module's domain-level code. This loosely coupled solution is the optimal way for most modules to access another module.
114
111
115
-
* A module can directly call into another module. This tightly-coupled solution is not recommended for most situations, but is sometimes unavoidable.
112
+
* A module can directly call into another module. This tightlycoupled solution is not recommended for most situations, but is sometimes unavoidable.
116
113
117
114
* Domain layer code in one module can also plug itself into another module by:
0 commit comments