Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
 
 
 
 
 
Florian Eisenmenger dd0eabdf3f initial commit 3 лет назад
..
build initial commit 3 лет назад
src/Framework/MockObject initial commit 3 лет назад
tests initial commit 3 лет назад
.gitattributes initial commit 3 лет назад
.gitignore initial commit 3 лет назад
.travis.yml initial commit 3 лет назад
CONTRIBUTING.md initial commit 3 лет назад
LICENSE initial commit 3 лет назад
README.md initial commit 3 лет назад
build.xml initial commit 3 лет назад
composer.json initial commit 3 лет назад
phpunit.xml.dist initial commit 3 лет назад

README.md

Build Status Latest Stable Version

PHPUnit_MockObject

PHPUnit_MockObject is the default mock object library for PHPUnit.

Requirements

  • PHP 5.3.3 is required but using the latest version of PHP is highly recommended

Installation

To add PHPUnit_MockObject as a local, per-project dependency to your project, simply add a dependency on phpunit/phpunit-mock-objects to your project’s composer.json file. Here is a minimal example of a composer.json file that just defines a dependency on PHPUnit_MockObject 2.3:

{
    "require": {
        "phpunit/phpunit-mock-objects": "2.3.*"
    }
}