lib-asserts
lib-asserts copied to clipboard
Assertion methods used by Codeception core and Asserts module
Sometimes I'd need a method to assert that in an array, one element comes *before* another. E.g. when testing things like search functions, where the order does matter. Right now...
Copied `@phpstan-assert` annotations directly from [PHPUnit `Assert` class](https://github.com/sebastianbergmann/phpunit/blob/main/src/Framework/Assert.php). Those assertions are required for proper static analysis as they are currently missing and causing errors on places which are by assertions...