Verify
Verify copied to clipboard
BDD Assertions for PHPUnit and Codeception
This should allow installation with phpunit 11
When testing that an exception is not thrown, the assertion count is not raised. This is true for both variants on the latest 2.2 release: ```php verify($callable)->callableDoesNotThrow(\Exception::class); expect($callable)->callableNotToThrow(\Exception::class); ``` Here...
I've stumbled into a mean error in my tests by using `verify()->equals()` all the time assuming it would perform a type safe comparison. At a certain point, I found out...