interface PHPUnit_Framework_MockObject_Stub_MatcherCollection

Stubs a method by returning a user-defined value.

@package PHPUnit_MockObject @author Sebastian Bergmann <sb@sebastian-bergmann.de> @copyright 2010-2013 Sebastian Bergmann <sb@sebastian-bergmann.de> @license http://www.opensource.org/licenses/BSD-3-Clause The BSD 3-Clause License @version Release: @package_version@ @link http://github.com/sebastianbergmann/phpunit-mock-objects @since Interface available since Release 1.0.0

Hierarchy

Expanded class hierarchy of PHPUnit_Framework_MockObject_Stub_MatcherCollection

All classes that implement PHPUnit_Framework_MockObject_Stub_MatcherCollection

File

drupal/core/vendor/phpunit/phpunit-mock-objects/PHPUnit/Framework/MockObject/Stub/MatcherCollection.php, line 56

View source
interface PHPUnit_Framework_MockObject_Stub_MatcherCollection {

  /**
   * Adds a new matcher to the collection which can be used as an expectation
   * or a stub.
   *
   * @param PHPUnit_Framework_MockObject_Matcher_Invocation $matcher
   *        Matcher for invocations to mock objects.
   */
  public function addMatcher(PHPUnit_Framework_MockObject_Matcher_Invocation $matcher);

}

Members

Namesort descending Modifiers Type Description Overrides
PHPUnit_Framework_MockObject_Stub_MatcherCollection::addMatcher public function Adds a new matcher to the collection which can be used as an expectation or a stub. 1