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
{{ message }}
This repository was archived by the owner on Feb 25, 2026. It is now read-only.
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 ?
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
::assertTrueor->assertTrue.how to use those "extended" assertions without need to call them with FQCN each time ?