Esempio n. 1
0
 /**
  * @expectedException Exception
  * @expectedExceptionMessage Error during the request (HTTP CODE: 400)
  */
 public function testCallCurlHttpCode()
 {
     $transport = new Simples_Transport_Http();
     try {
         $transport->call('/test', 'DELETE');
         $transport->call('/test', 'PUT');
     } catch (Exception $e) {
     }
     $transport->call('/test', 'POST');
 }