You are here

class RevealerSpec in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/phpspec/prophecy/spec/Prophecy/Prophecy/RevealerSpec.php \spec\Prophecy\Prophecy\RevealerSpec

Hierarchy

  • class \spec\Prophecy\Prophecy\RevealerSpec extends \PhpSpec\ObjectBehavior

Expanded class hierarchy of RevealerSpec

File

vendor/phpspec/prophecy/spec/Prophecy/Prophecy/RevealerSpec.php, line 7

Namespace

spec\Prophecy\Prophecy
View source
class RevealerSpec extends ObjectBehavior {
  function it_is_revealer() {
    $this
      ->shouldBeAnInstanceOf('Prophecy\\Prophecy\\RevealerInterface');
  }

  /**
   * @param \Prophecy\Prophecy\ProphecyInterface $prophecy
   * @param \stdClass                            $object
   */
  function it_reveals_single_instance_of_ProphecyInterface($prophecy, $object) {
    $prophecy
      ->reveal()
      ->willReturn($object);
    $this
      ->reveal($prophecy)
      ->shouldReturn($object);
  }

  /**
   * @param \Prophecy\Prophecy\ProphecyInterface $prophecy1
   * @param \Prophecy\Prophecy\ProphecyInterface $prophecy2
   * @param \stdClass                            $object1
   * @param \stdClass                            $object2
   */
  function it_reveals_instances_of_ProphecyInterface_inside_array($prophecy1, $prophecy2, $object1, $object2) {
    $prophecy1
      ->reveal()
      ->willReturn($object1);
    $prophecy2
      ->reveal()
      ->willReturn($object2);
    $this
      ->reveal(array(
      array(
        'item' => $prophecy2,
      ),
      $prophecy1,
    ))
      ->shouldReturn(array(
      array(
        'item' => $object2,
      ),
      $object1,
    ));
  }
  function it_does_not_touch_non_prophecy_interface() {
    $this
      ->reveal(42)
      ->shouldReturn(42);
  }

}

Members