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