You are here

function CallbackPromiseSpec::it_should_execute_string_function_callback in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 vendor/phpspec/prophecy/spec/Prophecy/Promise/CallbackPromiseSpec.php \spec\Prophecy\Promise\CallbackPromiseSpec::it_should_execute_string_function_callback()

Parameters

\Prophecy\Prophecy\ObjectProphecy $object:

\Prophecy\Prophecy\MethodProphecy $method:

File

vendor/phpspec/prophecy/spec/Prophecy/Promise/CallbackPromiseSpec.php, line 65

Class

CallbackPromiseSpec

Namespace

spec\Prophecy\Promise

Code

function it_should_execute_string_function_callback($object, $method) {
  $firstArgumentCallback = 'spec\\Prophecy\\Promise\\functionCallbackFirstArgument';
  $this
    ->beConstructedWith($firstArgumentCallback);
  $this
    ->execute(array(
    'one',
    'two',
  ), $object, $method)
    ->shouldReturn('one');
}