Feature Envy
Feature Envy occurs when a class or function depends too heavily on another class's data or methods. Feature Envy makes code fragile because logic is placed in the wrong class. Feature Envy can cause classes to change together even when th…
1 sources - 3 claims
Feature Envy occurs when a class or function depends too heavily on another class's data or methods. Feature Envy makes code fragile because logic is placed in the wrong class. Feature Envy can cause classes to change together even when they should remain independent.