| Conditions | 1 |
| Paths | 1 |
| Total Lines | 9 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 10 | public function testCallback() |
||
| 11 | { |
||
| 12 | $factory = new WebServiceFactory('Test\Skautis\WebServiceStub'); |
||
| 13 | $args = ['cache' => false]; |
||
| 14 | $webService = $factory->createWebService("http://moje-wsdl.xml", $args); |
||
| 15 | |||
| 16 | $this->assertEquals("http://moje-wsdl.xml", $webService->getWsdl()); |
||
| 17 | $this->assertEquals($args, $webService->getSoapArgs()); |
||
| 18 | } |
||
| 19 | } |
||
| 45 |