nulpunkt / php-stub
Small stubbing library for making dumb colaborators.
Installs: 13 487
Dependents: 0
Suggesters: 0
Security: 0
Stars: 2
Watchers: 3
Forks: 2
Open Issues: 0
Requires
- php: >=5.3.0
Requires (Dev)
- phpunit/phpunit: 3.7.*
- squizlabs/php_codesniffer: 1.*
This package is auto-updated.
Last update: 2024-11-17 14:05:15 UTC
README
A library for making colaborators, meant for testing.
Installation
Use composer to require:
"nulpunkt/php-stub": "dev-master"
Examples
use Nulpunkt\PhpStub\Stub; // A standard Stub $stub = new Stub([ 'answer' => 42, 'callMe' => function($a) { return $a; } # Anything which is a callable ]); $stub->foo = 'bar'; $stub->myMethod = function() { return 50; }; echo $stub->answer(); # => 42 echo $stub->answer; # => 42 echo $stub->callMe('maybe'); # => 'maybe' echo $stub->foo; # => 'bar' echo $stub->myMethod(); # => 50 echo $stub->lol()->hey(); # => $stub // Different configurations $stub = new Stub([], ['chainable' => false]); echo $stub->lol(); # => null // We can throw exceptions on missing functions $stub = new Stub([], ['throw' => true]); echo $stub->lol(); # throws a RuntimeException $stub = new Stub( [], ['throw' => true, 'exceptionclass' => 'InvalidArgumentException', 'exceptionmessage' => 'Bad function call'] ); echo $stub->lol(); # throws an InvalidArgumentException with message "Bad function call"