Download the PHP package aeris/spy without Composer
On this page you can find all versions of the php package aeris/spy. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Please rate this library. Is it a good library?
Informations about the package spy
Spy
Test spies for PHP.
Install
Overview
An Aeris\Spy
allows you to mock callable
s in PHP. A Spy
wraps around a Mockery\
object, which means that you can use Mockery expectations with your Aeris Spies.
For example:
API
shouldHaveBeenCalled()
/ shouldNotHaveBeenCalled()
andReturn($val)
andReturnUsing
Spy::returns($val);
Creates a spy which returns a value. Short-hand for creating a spy, then calling andReturn
.
Spy::returnsUsing($callable);
Creates a spy which returns a value via a callable. Short-hand for creating a spy, then calling andReturnUsing
.
All versions of spy with dependencies
PHP Build Version
Package Version
Requires
mockery/mockery Version
^0.9.4
The package aeris/spy contains the following files
Loading the files please wait ....