Example #1
0
 /**
  *
  */
 public function testSetGetLastError()
 {
     $soapClient = new SoapClient(array(SoapClient::WSDL_URL => __DIR__ . '/resources/bingsearch.wsdl', SoapClient::WSDL_CLASSMAP => self::classMap()));
     // this call should fail as no parameter is defined in the request
     $soapClient->search();
     $this->assertCount(1, $soapClient->getLastError());
 }