예제 #1
0
 protected function deleteInput(Input $input)
 {
     $this->setExpectedException(BitcodinResourceNotFoundException::class);
     $input->delete();
     $this->getInput($input);
 }
예제 #2
0
 /**
  * @depends testAnalyzeFtpInput
  */
 public function testDeleteFtpInput(Input $input)
 {
     $input->delete();
     $this->setExpectedException('bitcodin\\exceptions\\BitcodinResourceNotFoundException');
     Input::get($input->inputId);
 }