interface PHPUnit_Framework_MockObject_MockObject

Interface for all mock objects which are generated by PHPUnit_Framework_MockObject_Mock.

@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_MockObject

All classes that implement PHPUnit_Framework_MockObject_MockObject

1 string reference to 'PHPUnit_Framework_MockObject_MockObject'
PHPUnit_Framework_MockObject_Generator::getMock in drupal/core/vendor/phpunit/phpunit-mock-objects/PHPUnit/Framework/MockObject/Generator.php
Returns a mock object for the specified class.

File

drupal/core/vendor/phpunit/phpunit-mock-objects/PHPUnit/Framework/MockObject/MockObject.php, line 57

View source
interface PHPUnit_Framework_MockObject_MockObject {

  /**
   * Registers a new expectation in the mock object and returns the match
   * object which can be infused with further details.
   *
   * @param  PHPUnit_Framework_MockObject_Matcher_Invocation $matcher
   * @return PHPUnit_Framework_MockObject_Builder_InvocationMocker
   */
  public function expects(PHPUnit_Framework_MockObject_Matcher_Invocation $matcher);

  /**
   * Registers a new static expectation in the mock object and returns the
   * match object which can be infused with further details.
   *
   * @param  PHPUnit_Framework_MockObject_Matcher_Invocation $matcher
   * @return PHPUnit_Framework_MockObject_Builder_InvocationMocker
   */
  public static function staticExpects(PHPUnit_Framework_MockObject_Matcher_Invocation $matcher);

  /**
   * @return PHPUnit_Framework_MockObject_InvocationMocker
   */
  public function __phpunit_getInvocationMocker();

  /**
   * @return PHPUnit_Framework_MockObject_InvocationMocker
   */
  public static function __phpunit_getStaticInvocationMocker();

  /**
   * Verifies that the current expectation is valid. If everything is OK the
   * code should just return, if not it must throw an exception.
   *
   * @throws PHPUnit_Framework_ExpectationFailedException
   */
  public function __phpunit_verify();

}

Members

Namesort descending Modifiers Type Description Overrides
PHPUnit_Framework_MockObject_MockObject::expects public function Registers a new expectation in the mock object and returns the match object which can be infused with further details.
PHPUnit_Framework_MockObject_MockObject::staticExpects public static function Registers a new static expectation in the mock object and returns the match object which can be infused with further details.
PHPUnit_Framework_MockObject_MockObject::__phpunit_getInvocationMocker public function
PHPUnit_Framework_MockObject_MockObject::__phpunit_getStaticInvocationMocker public static function
PHPUnit_Framework_MockObject_MockObject::__phpunit_verify public function Verifies that the current expectation is valid. If everything is OK the code should just return, if not it must throw an exception.