duncan3dc / uopz-expectations
Mock core functions and set up expectations similar to Mockery
Installs: 156 158
Dependents: 5
Suggesters: 0
Security: 0
Stars: 8
Watchers: 2
Forks: 0
Open Issues: 0
Requires
- php: ^7.2 || ^8.0
- ext-uopz: *
- mockery/mockery: ^1.0
Requires (Dev)
- maglnet/composer-require-checker: ^2.0 || ^3.0
- phpstan/phpstan: ^0.12.94
- phpunit/phpunit: ^8.0
- squizlabs/php_codesniffer: ^3.6
README
Mock core functions and set up expectations similar to Mockery.
Full documentation is available at http://duncan3dc.github.io/uopz-expectations/
PHPDoc API documentation is also available at http://duncan3dc.github.io/uopz-expectations/api/
Introduction
The uopz extension offers an easy to way mock core functions.
The Mockery library offers a succinct API to declare expectation method calls.
This library combines the two to offer core function mocking with a familiar API.
Installation
The recommended method of installing this library is via Composer.
Run the following command from your project root:
$ composer require --dev duncan3dc/uopz-expectations
Getting Started
use duncan3dc\Mock\CoreFunction; CoreFunction::mock("time")->twice()->with()->andReturn(777); time(); # 777 /** * At this point the expectations will be checked, * and an exception will be throw as `time()` * should have been called twice. */ CoreFunction::close();
Read more at http://duncan3dc.github.io/uopz-expectations/
Where to get help
Found a bug? Got a question? Just not sure how something works?
Please create an issue and I'll do my best to help out.
Alternatively you can catch me on Twitter
duncan3dc/uopz-expectations for enterprise
Available as part of the Tidelift Subscription
The maintainers of duncan3dc/uopz-expectations and thousands of other packages are working with Tidelift to deliver commercial support and maintenance for the open source dependencies you use to build your applications. Save time, reduce risk, and improve code health, while paying the maintainers of the exact dependencies you use. Learn more.