本文整理汇总了PHP中SimpleInvokerDecorator::invoke方法的典型用法代码示例。如果您正苦于以下问题:PHP SimpleInvokerDecorator::invoke方法的具体用法?PHP SimpleInvokerDecorator::invoke怎么用?PHP SimpleInvokerDecorator::invoke使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类SimpleInvokerDecorator
的用法示例。
在下文中一共展示了SimpleInvokerDecorator::invoke方法的12个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: invoke
/**
* Invokes a test method and dispatches any
* untrapped errors. Called back from
* the visiting runner.
*
* @param string $method Test method to call.
*/
public function invoke($method)
{
$queue =& $this->_createErrorQueue();
set_error_handler('SimpleTestErrorHandler');
parent::invoke($method);
restore_error_handler();
$queue->tally();
}
示例2: invoke
/**
* Invokes a test method and dispatches any
* untrapped errors. Called back from
* the visiting runner.
* @param string $method Test method to call.
* @access public
*/
function invoke($method)
{
$queue =& $this->_createErrorQueue();
set_error_handler('SimpleTestErrorHandler', (E_ALL | E_STRICT) & ~E_RECOVERABLE_ERROR);
parent::invoke($method);
restore_error_handler();
$queue->tally();
}
示例3: invoke
/**
* Invokes a test method and dispatches any
* untrapped errors.
* @param string $method Test method to call.
* @access public
*/
function invoke($method)
{
try {
parent::invoke($method);
} catch (Exception $exception) {
$test_case =& $this->getTestCase();
$test_case->exception($exception);
}
}
示例4: invoke
function invoke($method)
{
set_error_handler('simpleTestErrorHandler');
parent::invoke($method);
$queue =& SimpleErrorQueue::instance();
while (list($severity, $message, $file, $line, $globals) = $queue->extract()) {
$test_case =& $this->getTestCase();
$test_case->error($severity, $message, $file, $line, $globals);
}
restore_error_handler();
}
示例5: invoke
/**
* Invokes a test method and dispatches any
* untrapped errors.
* @param string $method Test method to call.
* @access public
*/
function invoke($method)
{
try {
parent::invoke($method);
} catch (Exception $exception) {
$test_case =& $this->getTestCase();
$test_case->tearDown();
// Added by T.J.Hunt@open.ac.uk.
$test_case->exception($exception);
}
}
示例6: invoke
function invoke($method)
{
ob_start();
parent::invoke($method);
$output = ob_get_contents();
ob_end_clean();
$sock = new SimpleSocket("127.0.0.1", $this->_port, 5);
$sock->write($output);
$sock->close();
echo $sock->getError();
}
示例7: invoke
/**
* Invokes a test method and dispatches any
* untrapped errors. Called back from
* the visiting runner.
* @param string $method Test method to call.
* @access public
*/
function invoke($method)
{
$context =& SimpleTest::getContext();
$queue =& $context->get('SimpleErrorQueue');
$queue->setTestCase($this->GetTestCase());
set_error_handler('SimpleTestErrorHandler');
parent::invoke($method);
while (list($severity, $message, $file, $line) = $queue->extract()) {
$severity = SimpleErrorQueue::getSeverityAsString($severity);
$test =& $this->getTestCase();
$test->error($severity, $message, $file, $line);
}
restore_error_handler();
}
示例8: invoke
/**
* Invokes a test method whilst trapping expected
* exceptions. Any left over unthrown exceptions
* are then reported as failures.
* @param string $method Test method to call.
*/
function invoke($method)
{
$trap = SimpleTest::getContext()->get('SimpleExceptionTrap');
$trap->clear();
try {
parent::invoke($method);
} catch (Exception $exception) {
if (!$trap->isExpected($this->getTestCase(), $exception)) {
$this->getTestCase()->exception($exception);
}
$trap->clear();
}
if ($message = $trap->getOutstanding()) {
$this->getTestCase()->fail($message);
}
}
示例9: invoke
/**
* Invokes a test method and dispatches any
* untrapped errors. Called back from
* the visiting runner.
* @param string $method Test method to call.
* @access public
*/
function invoke($method)
{
$queue =& $this->_createErrorQueue();
set_error_handler('SimpleTestErrorHandler');
//moodle hack start
// note: this breaks PHP4 compatibility!
$rethrow = null;
try {
parent::invoke($method);
} catch (Exception $e) {
$rethrow = $e;
}
restore_error_handler();
$queue->tally();
if ($rethrow) {
throw $rethrow;
}
//moodle hack end
}
示例10: invoke
/**
* Invokes a test method whilst trapping expected
* exceptions. Any left over unthrown exceptions
* are then reported as failures.
*
* @param string $method Test method to call.
*/
public function invoke($method)
{
$trap = SimpleTest::getContext()->get('SimpleExceptionTrap');
$trap->clear();
try {
$has_thrown = false;
parent::invoke($method);
} catch (Exception $exception) {
$has_thrown = true;
if (!$trap->isExpected($this->getTestCase(), $exception)) {
$this->getTestCase()->exception($exception);
}
$trap->clear();
}
if ($message = $trap->getOutstanding()) {
$this->getTestCase()->fail($message);
}
if ($has_thrown) {
try {
parent::getTestCase()->tearDown();
} catch (Exception $e) {
}
}
}
示例11: invoke
/**
* Invokes a test method and dispatches any
* untrapped assertion failures. Called back from
* the visiting runner.
* @param string $method Test method to call.
* @access public
*/
function invoke($method)
{
$queue = $this->createFailQueue();
parent::invoke($method);
$queue->tally();
}
示例12: invoke
/**
* Builds the browser and runs the test.
* @param string $method Test method to call.
* @access public
*/
function invoke($method)
{
$test =& $this->getTestCase();
$test->setBrowser($test->createBrowser());
parent::invoke($method);
$test->unsetBrowser();
}