PHP Класс kahlan\matcher\ToReceive

Показать файл Открыть проект Примеры использования класса

Защищенные свойства (Protected)

Свойство Тип Описание
$_backtrace array The expectation backtrace reference.
$_description array The description report.
$_expected array The expected method method name to be called.
$_messages object The messages instance.
$_ordered boolean If true, will take the calling order into account.
$_report array The report.
$_times integer Number of occurences to match.

Открытые методы

Метод Описание
__construct ( string | object $actual, string $expected ) Constructor
__get ( $name ) Magic getter, if called with 'ordered' will set ordered to true.
_buildDescription ( mixed $startIndex ) Build the description of the runned ::match() call.
backtrace ( ) : object Gets the backtrace reference.
description ( ) Returns the description report.
match ( mixed $actual, mixed $expected = null ) : boolean Checks that $actual receive the $expected message.
once ( ) : self Sets the number of occurences.
resolve ( ) : boolean Resolves the matching.
times ( integer $times = null ) : mixed Gets/sets the number of occurences.
where ( $requirements = [] ) : self Set arguments requirement indexed by method name.
with ( ) : self Sets arguments requirement.

Защищенные методы

Метод Описание
_check ( mixed $reference ) Check the actual value can receive messages.
_reference ( mixed $reference ) Return the actual reference which must be used.
_watch ( $message ) Watch a message.

Описание методов

__construct() публичный Метод

Constructor
public __construct ( string | object $actual, string $expected )
$actual string | object A fully-namespaced class name or an object instance.
$expected string The expected method method name to be called.

__get() публичный Метод

Magic getter, if called with 'ordered' will set ordered to true.
public __get ( $name )

_buildDescription() публичный Метод

Build the description of the runned ::match() call.
public _buildDescription ( mixed $startIndex )
$startIndex mixed The startIndex in calls log.

_check() защищенный Метод

Check the actual value can receive messages.
protected _check ( mixed $reference )
$reference mixed An instance or a fully-namespaced class name.

_reference() защищенный Метод

Return the actual reference which must be used.
protected _reference ( mixed $reference )
$reference mixed An instance or a fully-namespaced class name.

_watch() защищенный Метод

Watch a message.
protected _watch ( $message )

backtrace() публичный Метод

Gets the backtrace reference.
public backtrace ( ) : object
Результат object

description() публичный Метод

Returns the description report.
public description ( )

match() публичный статический Метод

Checks that $actual receive the $expected message.
public static match ( mixed $actual, mixed $expected = null ) : boolean
$actual mixed The actual value.
$expected mixed The expected message.
Результат boolean

once() публичный Метод

Sets the number of occurences.
public once ( ) : self
Результат self

resolve() публичный Метод

Resolves the matching.
public resolve ( ) : boolean
Результат boolean Returns `true` if successfully resolved, `false` otherwise.

times() публичный Метод

Gets/sets the number of occurences.
public times ( integer $times = null ) : mixed
$times integer The number of occurences to set or none to get it.
Результат mixed The number of occurences on get or `self` otherwise.

where() публичный Метод

Set arguments requirement indexed by method name.
public where ( $requirements = [] ) : self
Результат self

with() публичный Метод

Sets arguments requirement.
public with ( ) : self
Результат self

Описание свойств

$_backtrace защищенное свойство

The expectation backtrace reference.
protected array $_backtrace
Результат array

$_description защищенное свойство

The description report.
protected array $_description
Результат array

$_expected защищенное свойство

The expected method method name to be called.
protected array $_expected
Результат array

$_messages защищенное свойство

The messages instance.
protected object $_messages
Результат object

$_ordered защищенное свойство

If true, will take the calling order into account.
protected bool $_ordered
Результат boolean

$_report защищенное свойство

The report.
protected array $_report
Результат array

$_times защищенное свойство

Number of occurences to match.
protected int $_times
Результат integer