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