You are here

class CallbackTokenSpec in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 vendor/phpspec/prophecy/spec/Prophecy/Argument/Token/CallbackTokenSpec.php \spec\Prophecy\Argument\Token\CallbackTokenSpec

Hierarchy

  • class \spec\Prophecy\Argument\Token\CallbackTokenSpec extends \PhpSpec\ObjectBehavior

Expanded class hierarchy of CallbackTokenSpec

File

vendor/phpspec/prophecy/spec/Prophecy/Argument/Token/CallbackTokenSpec.php, line 7

Namespace

spec\Prophecy\Argument\Token
View source
class CallbackTokenSpec extends ObjectBehavior {
  function let() {
    $this
      ->beConstructedWith('get_class');
  }
  function it_implements_TokenInterface() {
    $this
      ->shouldBeAnInstanceOf('Prophecy\\Argument\\Token\\TokenInterface');
  }
  function it_is_not_last() {
    $this
      ->shouldNotBeLast();
  }
  function it_scores_7_if_argument_matches_callback() {
    $this
      ->beConstructedWith(function ($argument) {
      return 2 === $argument;
    });
    $this
      ->scoreArgument(2)
      ->shouldReturn(7);
  }
  function it_does_not_scores_if_argument_does_not_match_callback() {
    $this
      ->beConstructedWith(function ($argument) {
      return 2 === $argument;
    });
    $this
      ->scoreArgument(5)
      ->shouldReturn(false);
  }
  function its_string_representation_should_tell_that_its_callback() {
    $this
      ->__toString()
      ->shouldReturn('callback()');
  }

}

Members