Ejemplo n.º 1
0
 /**
  * @test
  * @depends updateFtpInput_File4
  */
 public function getFtpInput_File4(Input $input)
 {
     $inputGot = Input::get($input->inputId);
     $this->checkInput($inputGot);
     return $inputGot;
 }
Ejemplo n.º 2
0
 protected function getInput(Input $input)
 {
     $input = Input::get($input->inputId);
     $this->checkInput($input);
     return $input;
 }
Ejemplo n.º 3
0
 /**
  * @depends testAnalyzeFtpInput
  */
 public function testDeleteFtpInput(Input $input)
 {
     $input->delete();
     $this->setExpectedException('bitcodin\\exceptions\\BitcodinResourceNotFoundException');
     Input::get($input->inputId);
 }