xref: /PHP-5.5/ext/soap/tests/bugs/bug29109.phpt (revision 5429bfb5)
1--TEST--
2Bug #29109 (Uncaught SoapFault exception: [WSDL] Out of memory)
3--SKIPIF--
4<?php require_once('skipif.inc'); ?>
5--INI--
6soap.wsdl_cache_enabled=0
7--FILE--
8<?php
9$client = new SoapClient(dirname(__FILE__)."/bug29109.wsdl");
10var_dump($client->__getFunctions());
11?>
12--EXPECT--
13array(1) {
14  [0]=>
15  string(53) "HelloWorldResponse HelloWorld(HelloWorld $parameters)"
16}