/**
  * setup a wrong bootstrap.yml to raise MissingBootstrapParametersException.
  *
  * @covers ::hydrateContainerWithBootstrapParameters
  */
 public function testRaiseOfMissingBootstrapParametersException()
 {
     $this->application->setContext('fake_bootstrap');
     $this->application->setRepository($this->application->getBaseRepository() . DIRECTORY_SEPARATOR . $this->application->getContext());
     $container_builder = new ContainerBuilder($this->application);
     try {
         $container_proxy = $container_builder->getContainer();
         $this->fail('Raise of MissingBootstrapParametersException expected.');
     } catch (\Exception $e) {
         $this->assertInstanceOf('BackBee\\DependencyInjection\\Exception\\MissingBootstrapParametersException', $e);
     }
 }