Ejemplo n.º 1
0
 /**
  * @expectedException RuntimeException
  * @expectedExceptionMessage Could not generate private key
  * @covers ImboCli\Command\GeneratePrivateKey::execute
  */
 public function testFailsWhenItCantGenerateAPrivateKey()
 {
     $this->command->maxTries = 0;
     $commandTester = new CommandTester($this->command);
     $commandTester->execute(array('command' => $this->command->getName()));
 }