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
Hi.
Let say I want to use assertion assertArrayEqualsNoOrder.
In example, there is in-place example to execute PHPUnit_Extensions_Assert_More::assertArrayEqualsNoOrder(....)
yet, that means I need to repeat whole class name whenever I want to use assertion, while for regular assertions I could use ::assertTrue or ->assertTrue.
how to use those "extended" assertions without need to call them with FQCN each time ?
The text was updated successfully, but these errors were encountered:
I think the next release of this will make this a bit more seamless with the update to use namespaces. I'll double check and get back to you soonish as we're interested in having these work with phpunit 6 - and that seems to be a pre requisite.
Hi.
Let say I want to use assertion
assertArrayEqualsNoOrder
.In example, there is in-place example to execute
PHPUnit_Extensions_Assert_More::assertArrayEqualsNoOrder(....)
yet, that means I need to repeat whole class name whenever I want to use assertion, while for regular assertions I could use
::assertTrue
or->assertTrue
.how to use those "extended" assertions without need to call them with FQCN each time ?
The text was updated successfully, but these errors were encountered: