drupal/core/vendor/phpunit/phpunit-mock-objects
Nathaniel Catchpole 9601e39d34 Issue #2287139 by alexpott: Fixed Various serialization test failures after updating to php 5.4.29. 2014-06-20 09:39:41 +01:00
..
build Issue #2287139 by alexpott: Fixed Various serialization test failures after updating to php 5.4.29. 2014-06-20 09:39:41 +01:00
src/Framework/MockObject Issue #2287139 by alexpott: Fixed Various serialization test failures after updating to php 5.4.29. 2014-06-20 09:39:41 +01:00
tests Issue #2287139 by alexpott: Fixed Various serialization test failures after updating to php 5.4.29. 2014-06-20 09:39:41 +01:00
.gitattributes Issue #1916936 by msonnabaum: Add vendored copy of phpunit. 2013-02-14 13:45:50 -05:00
.gitignore Issue #2114823 by alexpott, neclimdul, Xano, cosmicdreams, chx: Update PHPUnit to 4.x. 2014-06-14 22:29:44 -07:00
.travis.yml Issue #2114823 by alexpott, neclimdul, Xano, cosmicdreams, chx: Update PHPUnit to 4.x. 2014-06-14 22:29:44 -07:00
CONTRIBUTING.md Issue #1916936 by msonnabaum: Add vendored copy of phpunit. 2013-02-14 13:45:50 -05:00
LICENSE Issue #2114823 by alexpott, neclimdul, Xano, cosmicdreams, chx: Update PHPUnit to 4.x. 2014-06-14 22:29:44 -07:00
README.md Issue #2287139 by alexpott: Fixed Various serialization test failures after updating to php 5.4.29. 2014-06-20 09:39:41 +01:00
build.xml Issue #2114823 by alexpott, neclimdul, Xano, cosmicdreams, chx: Update PHPUnit to 4.x. 2014-06-14 22:29:44 -07:00
composer.json Issue #2287139 by alexpott: Fixed Various serialization test failures after updating to php 5.4.29. 2014-06-20 09:39:41 +01:00
phpunit.xml.dist Issue #2287139 by alexpott: Fixed Various serialization test failures after updating to php 5.4.29. 2014-06-20 09:39:41 +01:00

README.md

Latest Stable Version Build Status

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.0:

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