We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 60417c0 commit ff1568aCopy full SHA for ff1568a
tests/DomDocumentHandlerTest.php
@@ -140,6 +140,19 @@ public function testGetElementByNameAndAttributes()
140
));
141
$this->assertInstanceOf('\WsdlToPhp\DomHandler\ElementHandler', $part);
142
}
143
+ /**
144
+ *
145
+ */
146
+ public function testGetElementByNameAndAttributesContainingString()
147
+ {
148
+ $instance = self::bingInstance();
149
+
150
+ $part = $instance->getElementByNameAndAttributes('part', array(
151
+ 'name' => 'parameters',
152
+ 'element' => '*:SearchRequest',
153
+ ));
154
+ $this->assertInstanceOf('\WsdlToPhp\DomHandler\ElementHandler', $part);
155
+ }
156
/**
157
* @expectedException InvalidArgumentException
158
*/
0 commit comments