PHP Class kahlan\matcher\ToBeCalled

Datei anzeigen Open project: crysalead/kahlan Class Usage Examples

Protected Properties

Property Type Description
$_actual string | object A fully-namespaced function name.
$_backtrace array The expectation backtrace reference.
$_description array The description report.
$_message object The message instance.
$_ordered boolean If true, will take the calling order into account.
$_report array The report.
$_times integer Number of occurences to match.

Public Methods

Method Description
__construct ( string | object $actual ) 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 ) : boolean Checks that $actual will be called.
once ( ) : self Sets the number of occurences.
resolve ( ) : boolean Resolves the matching.
times ( integer $times = null ) : mixed Gets/sets the number of occurences.
with ( ) : self Sets arguments requirement.

Method Details

__construct() public method

Constructor
public __construct ( string | object $actual )
$actual string | object A fully-namespaced class name or an object instance.

__get() public method

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

_buildDescription() public method

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

backtrace() public method

Gets the backtrace reference.
public backtrace ( ) : object
return object

description() public method

Returns the description report.
public description ( )

match() public static method

Checks that $actual will be called.
public static match ( mixed $actual ) : boolean
$actual mixed The actual value.
return boolean

once() public method

Sets the number of occurences.
public once ( ) : self
return self

resolve() public method

Resolves the matching.
public resolve ( ) : boolean
return boolean Returns `true` if successfully resolved, `false` otherwise.

times() public method

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.
return mixed The number of occurences on get or `self` otherwise.

with() public method

Sets arguments requirement.
public with ( ) : self
return self

Property Details

$_actual protected_oe property

A fully-namespaced function name.
protected string|object $_actual
return string | object

$_backtrace protected_oe property

The expectation backtrace reference.
protected array $_backtrace
return array

$_description protected_oe property

The description report.
protected array $_description
return array

$_message protected_oe property

The message instance.
protected object $_message
return object

$_ordered protected_oe property

If true, will take the calling order into account.
protected bool $_ordered
return boolean

$_report protected_oe property

The report.
protected array $_report
return array

$_times protected_oe property

Number of occurences to match.
protected int $_times
return integer