Exemplo n.º 1
0
 public function testLoadFunctionsIsNotImplemented()
 {
     $server = new Server();
     $this->setExpectedException('Zend\\Soap\\Exception\\RuntimeException', 'Unimplemented method');
     $server->loadFunctions("bogus");
 }
Exemplo n.º 2
0
 public function testLoadFunctionsIsNotImplemented()
 {
     $server = new Server();
     try {
         $server->loadFunctions("bogus");
         $this->fail();
     } catch (ServerException $e) {
     }
 }