assert
assert copied to clipboard
Assertions to validate method input/output with nice error messages.
Results
61
assert issues
Sort by
recently updated
recently updated
newest added
trafficstars
Hi, I think I just found a bug in your assertion library ```php $a = NAN; // not-a-number Assert::greaterThanEq($a, 0); // does not throw, while it should Assert::lessThanEq($a, 0); //...
bug