예제 #1
0
파일: ClientTest.php 프로젝트: netvlies/zf
 public function testSetSoapClient()
 {
     $clientMock = $this->getMock('SoapClient', array('__setCookie'), array(null, array('uri' => 'http://www.zend.com', 'location' => 'http://www.zend.com')));
     $soap = new Zend_Soap_Client();
     $soap->setSoapClient($clientMock);
     $this->assertSame($clientMock, $soap->getSoapClient());
 }