Beispiel #1
0
 public function testAskConfirmation()
 {
     $this->command->setCode(function (InputInterface $input, OutputInterface $output) use(&$isDecorated) {
         $io = new ConsoleIO($input, $output);
         $this->assertTrue($io->AskConfirmation('Are you sure?'));
         $this->assertFalse($io->AskConfirmation('Are you sure?', false));
     });
     $this->tester->execute([], ['interactive' => false, 'decorated' => false]);
 }