You are here

class ClassCreatorExceptionSpec in Zircon Profile 8

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

Hierarchy

Expanded class hierarchy of ClassCreatorExceptionSpec

File

vendor/phpspec/prophecy/spec/Prophecy/Exception/Doubler/ClassCreatorExceptionSpec.php, line 8

Namespace

spec\Prophecy\Exception\Doubler
View source
class ClassCreatorExceptionSpec extends ObjectBehavior {

  /**
   * @param \Prophecy\Doubler\Generator\Node\ClassNode $node
   */
  function let($node) {
    $this
      ->beConstructedWith('', $node);
  }
  function it_is_a_prophecy_exception() {
    $this
      ->shouldBeAnInstanceOf('Prophecy\\Exception\\Exception');
    $this
      ->shouldBeAnInstanceOf('Prophecy\\Exception\\Doubler\\DoublerException');
  }
  function it_contains_a_reflected_node($node) {
    $this
      ->getClassNode()
      ->shouldReturn($node);
  }

}

Members