コード例 #1
0
ファイル: BakeCommandTest.php プロジェクト: elepunk/oven
 public function testFireMethod()
 {
     $command = new BakeCommand();
     $mockInput = m::mock('Symfony\\Component\\Console\\Input\\InputInterface');
     $mockOutput = m::mock('Symfony\\Component\\Console\\Ouput\\OutputInterface');
     $command->input = $mockInput;
     $command->output = $mockOutput;
     $mockInput->shouldReceive('getOption')->once();
     $mockInput->shouldReceive('getArgument')->once();
     $command->fire();
 }
コード例 #2
0
ファイル: Builder.php プロジェクト: elepunk/oven
 /**
  * @return mixed
  */
 protected function ignoreNamespace()
 {
     return $this->command->option('ignore-namespace');
 }