Example #1
0
 /**
  * @group ZF-5300
  */
 public function testSetAndGetWSDLCache()
 {
     $server = new Server();
     $this->assertNull($server->getWSDLCache());
     $server->setWSDLCache(100);
     $this->assertEquals(100, $server->getWSDLCache());
     $options = $server->getOptions();
     $this->assertTrue(isset($options['cache_wsdl']));
     $this->assertEquals(100, $options['cache_wsdl']);
 }