/**
  * @group ZF-9110
  */
 public function testPassingSameBootstrapAsApplicationShouldNotCauseRecursion()
 {
     $this->setExpectedException('Zend\\Application\\Exception\\InvalidArgumentException');
     $bootstrap = new Application\Bootstrap($this->application);
     $bootstrap->setApplication($bootstrap);
 }