17.4. Why is a highly coupled module difficult to unit test?
Answers
Answered by
3
In a highly coupled module, the interaction occurs with the help of the shared data.
Modules become highly interdependent when they exchange a large amount of data.
Their interface complexity determines their degree of coupling.
And the interface complexity is determined on the basis of the perimeter.
Therefore, the highly coupled module is more difficult to unit test.
Similar questions