Verify icon indicating copy to clipboard operation
Verify copied to clipboard

BDD Assertions for PHPUnit and Codeception

Results 3 Verify issues
Sort by recently updated
recently updated
newest added

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...