本文整理汇总了PHP中TestCase::any方法的典型用法代码示例。如果您正苦于以下问题:PHP TestCase::any方法的具体用法?PHP TestCase::any怎么用?PHP TestCase::any使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类TestCase
的用法示例。
在下文中一共展示了TestCase::any方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: addBehaviours
/**
* Adds mock objects for some methods.
*
* @param TestCase $test A test object.
* @param PHPUnit_Framework_MockObject_MockObject $mockObject The mock object.
* @param array $options A set of options to configure the mock.
*
* @return PHPUnit_Framework_MockObject_MockObject The object with the behaviours added
*
* @since 3.4
*/
public static function addBehaviours($test, $mockObject, $options)
{
// Mock a call to JApplicationBase::getDispatcher().
if (isset($options['dispatcher'])) {
$mockObject->expects($test->any())->method('getDispatcher')->willReturn($options['dispatcher']);
} else {
$mockObject->expects($test->any())->method('getDispatcher')->willReturn(TestMockDispatcher::create($test));
}
$test->assignMockReturns($mockObject, array('close' => true));
return $mockObject;
}
示例2: create
/**
* Creates and instance of the mock WebServiceApplicationWeb object.
*
* The test can implement the following overrides:
* - mockAppendBody
* - mockGetBody
* - mockPrepentBody
* - mockSetBody
*
* If any *Body methods are implemented in the test class, all should be implemented otherwise behaviour will be unreliable.
*
* @param TestCase $test A test object.
* @param array $options A set of options to configure the mock.
*
* @return PHPUnit_Framework_MockObject_MockObject
*
* @since 11.3
*/
public static function create($test, $options = array())
{
// Set expected server variables.
if (!isset($_SERVER['HTTP_HOST'])) {
$_SERVER['HTTP_HOST'] = 'localhost';
}
// Collect all the relevant methods in WebServiceApplicationWeb (work in progress).
$methods = array('allowCache', 'appendBody', 'clearHeaders', 'close', 'execute', 'get', 'getBody', 'getDocument', 'getHeaders', 'getIdentity', 'getLanguage', 'getSession', 'loadConfiguration', 'loadDispatcher', 'loadDocument', 'loadIdentity', 'loadLanguage', 'loadSession', 'prependBody', 'redirect', 'registerEvent', 'sendHeaders', 'set', 'setBody', 'setHeader', 'triggerEvent');
// Create the mock.
$mockObject = $test->getMock('WebServiceApplicationWeb', $methods, array(), '', true);
// Mock calls to JApplicationWeb::getDocument().
$mockObject->expects($test->any())->method('getDocument')->will($test->returnValue(TestMockDocument::create($test)));
// Mock calls to JApplicationWeb::getLanguage().
$mockObject->expects($test->any())->method('getLanguage')->will($test->returnValue(TestMockLanguage::create($test)));
// Mock a call to JApplicationWeb::getSession().
if (isset($options['session'])) {
$mockObject->expects($test->any())->method('getSession')->will($test->returnValue($options['session']));
} else {
$mockObject->expects($test->any())->method('getSession')->will($test->returnValue(TestMockSession::create($test)));
}
$test->assignMockCallbacks($mockObject, array('appendBody' => array(is_callable(array($test, 'mockAppendBody')) ? $test : get_called_class(), 'mockAppendBody'), 'getBody' => array(is_callable(array($test, 'mockGetBody')) ? $test : get_called_class(), 'mockGetBody'), 'prependBody' => array(is_callable(array($test, 'mockPrependBody')) ? $test : get_called_class(), 'mockPrependBody'), 'setBody' => array(is_callable(array($test, 'mockSetBody')) ? $test : get_called_class(), 'mockSetBody')));
// Reset the body storage.
self::$body = array();
return $mockObject;
}
示例3: addBehaviours
/**
* Adds mock objects for some methods.
*
* @param TestCase $test A test object.
* @param PHPUnit_Framework_MockObject_MockObject $mockObject The mock object.
* @param array $options A set of options to configure the mock.
*
* @return PHPUnit_Framework_MockObject_MockObject The object with the behaviours added
*
* @since 3.4
*/
public static function addBehaviours($test, $mockObject, $options)
{
// Mock calls to JApplicationWeb::getDocument().
$mockObject->expects($test->any())->method('getDocument')->will($test->returnValue(TestMockDocument::create($test)));
// Mock calls to JApplicationWeb::getLanguage().
$mockObject->expects($test->any())->method('getLanguage')->will($test->returnValue(TestMockLanguage::create($test)));
// Mock a call to JApplicationWeb::getSession().
if (isset($options['session'])) {
$mockObject->expects($test->any())->method('getSession')->will($test->returnValue($options['session']));
} else {
$mockObject->expects($test->any())->method('getSession')->will($test->returnValue(TestMockSession::create($test)));
}
$test->assignMockCallbacks($mockObject, array('appendBody' => array(is_callable(array($test, 'mockAppendBody')) ? $test : get_called_class(), 'mockAppendBody'), 'getBody' => array(is_callable(array($test, 'mockGetBody')) ? $test : get_called_class(), 'mockGetBody'), 'prependBody' => array(is_callable(array($test, 'mockPrependBody')) ? $test : get_called_class(), 'mockPrependBody'), 'setBody' => array(is_callable(array($test, 'mockSetBody')) ? $test : get_called_class(), 'mockSetBody'), 'getHeaders' => array(is_callable(array($test, 'mockGetHeaders')) ? $test : get_called_class(), 'mockGetHeaders'), 'setHeader' => array(is_callable(array($test, 'mockSetHeader')) ? $test : get_called_class(), 'mockSetHeader'), 'clearHeaders' => array(is_callable(array($test, 'mockClearHeaders')) ? $test : get_called_class(), 'mockClearHeaders'), 'allowCache' => array(is_callable(array($test, 'mockAllowCache')) ? $test : get_called_class(), 'mockAllowCache')));
// Reset the body storage.
static::$body = array();
// Reset the headers storage.
static::$headers = array();
// Reset the cache storage.
static::$cachable = false;
return parent::addBehaviours($test, $mockObject, $options);
}
示例4: addMethod
/**
* Add a method to the stub
*
* @param string $methodName
* @param mixed $returnValue
*/
public function addMethod($methodName, $returnValue)
{
$this->mock->expects($this->testCase->any())->method($methodName)->will($this->testCase->returnValue($returnValue));
}
示例5: addBehaviours
/**
* Adds mock objects for some methods.
*
* @param TestCase $test A test object.
* @param PHPUnit_Framework_MockObject_MockObject $mockObject The mock object.
* @param array $options A set of options to configure the mock.
*
* @return PHPUnit_Framework_MockObject_MockObject The object with the behaviours added
*
* @since 3.4
*/
public static function addBehaviours($test, $mockObject, $options)
{
// Mock calls to JApplicationCms::getMenu();
$mockObject->expects($test->any())->method('getMenu')->will($test->returnValue(TestMockMenu::create($test)));
return parent::addBehaviours($test, $mockObject, $options);
}