Lggr
|
Public Member Functions | |
__construct (array $parameterGroups) | |
toString () | |
matches (BaseInvocation $invocation) | |
verify () | |
![]() | |
invoked (BaseInvocation $invocation) | |
Invocation matcher which looks for sets of specific parameters in the invocations.
Checks the parameters of the incoming invocations, the parameter list is checked against the defined constraints in $parameters. If the constraint is met it will return true in matches().
It takes a list of match groups and and increases a call index after each invocation. So the first invocation uses the first group of constraints, the second the next and so on.
PHPUnit\Framework\MockObject\Matcher\ConsecutiveParameters::__construct | ( | array | $parameterGroups | ) |
array | $parameterGroups |
PHPUnit\Framework\MockObject\Matcher\ConsecutiveParameters::matches | ( | BaseInvocation | $invocation | ) |
BaseInvocation | $invocation |
Implements PHPUnit\Framework\MockObject\Matcher\Invocation.
PHPUnit\Framework\MockObject\Matcher\ConsecutiveParameters::toString | ( | ) |
Implements PHPUnit\Framework\SelfDescribing.
PHPUnit\Framework\MockObject\Matcher\ConsecutiveParameters::verify | ( | ) |
Checks if the invocation $invocation matches the current rules. If it does the matcher will get the invoked() method called which should check if an expectation is met.
Invocation | $invocation | Object containing information on a mocked or stubbed method which was invoked |
Reimplemented from PHPUnit\Framework\MockObject\Matcher\StatelessInvocation.