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
Some people tends to rely on a limited subset of checks and/or perform condition checks in test code, such as
Check.That(result==5).IsTrue();// instead of Check.That(result).IsEqualTo(5);Check.That(result>=0).IsTrue();// instead of Check. That(result).IsPositiveOrZero();
Expected Behavior
NFluent should provide hints when it recognise an anti pattern.
The text was updated successfully, but these errors were encountered:
Some people tends to rely on a limited subset of checks and/or perform condition checks in test code, such as
Expected Behavior
NFluent should provide hints when it recognise an anti pattern.
The text was updated successfully, but these errors were encountered: