Lggr
Public Member Functions | List of all members
PHPUnit\Framework\MockObject\Matcher\InvokedAtIndex Class Reference
Inheritance diagram for PHPUnit\Framework\MockObject\Matcher\InvokedAtIndex:
Inheritance graph
[legend]
Collaboration diagram for PHPUnit\Framework\MockObject\Matcher\InvokedAtIndex:
Collaboration graph
[legend]

Public Member Functions

 __construct ($sequenceIndex)
 
 toString ()
 
 matches (BaseInvocation $invocation)
 
 invoked (BaseInvocation $invocation)
 
 verify ()
 

Detailed Description

Invocation matcher which checks if a method was invoked at a certain index.

If the expected index number does not match the current invocation index it will not match which means it skips all method and parameter matching. Only once the index is reached will the method and parameter start matching and verifying.

If the index is never reached it will throw an exception in index.

Constructor & Destructor Documentation

◆ __construct()

PHPUnit\Framework\MockObject\Matcher\InvokedAtIndex::__construct (   $sequenceIndex)
Parameters
int$sequenceIndex

Member Function Documentation

◆ invoked()

PHPUnit\Framework\MockObject\Matcher\InvokedAtIndex::invoked ( BaseInvocation  $invocation)
Parameters
BaseInvocation$invocation

Implements PHPUnit\Framework\MockObject\Matcher\Invocation.

◆ matches()

PHPUnit\Framework\MockObject\Matcher\InvokedAtIndex::matches ( BaseInvocation  $invocation)
Parameters
BaseInvocation$invocation
Returns
bool

Implements PHPUnit\Framework\MockObject\Matcher\Invocation.

◆ toString()

PHPUnit\Framework\MockObject\Matcher\InvokedAtIndex::toString ( )
Returns
string

Implements PHPUnit\Framework\SelfDescribing.

◆ verify()

PHPUnit\Framework\MockObject\Matcher\InvokedAtIndex::verify ( )

Verifies that the current expectation is valid. If everything is OK the code should just return, if not it must throw an exception.

Exceptions
ExpectationFailedException

Implements PHPUnit\Framework\MockObject\Verifiable.


The documentation for this class was generated from the following file: