mougrim/phpunit-soft-mocks

Simple running phpunit with soft-mocks

1.0.0-beta1 2017-09-08 06:16 UTC

This package is auto-updated.

Last update: 2024-04-16 20:05:05 UTC


README

PHPUnit-soft-mocks is Badoo soft-mocks wrapper for PhpUnit. The wrapper is \Mougrim\PhpunitSoftMocks\TestCase.

Latest Stable Version Latest Unstable Version License Build Status Scrutinizer Code Quality Code Coverage

Installation

You can install PHPUnit-soft-mocks via Composer:

  1. Add to composer.json (for patch phpunit packages):
    {
        "minimum-stability": "beta",
        "prefer-stable": true,
        "extra": {
            "enable-patching": true
        }
    }
  2. Run:
    composer require --dev mougrim/phpunit-soft-mocks
    mkdir /tmp/mocks/ # create dir with soft-mocks cache

Using

For using soft-mocks wrapper you can extend \Mougrim\PhpunitSoftMocks\TestCase class, see example.