File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed
tests/unit/Codeception/Module Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change 11<?php
22
3- use Codeception \Util \Stub ;
3+ use Codeception \Util \Stub as Stub ;
44use Codeception \Util \Soap as SoapUtil ;
55
66class SoapTest extends \PHPUnit_Framework_TestCase
@@ -17,8 +17,9 @@ public function setUp() {
1717 $ this ->module = new \Codeception \Module \Soap ();
1818 $ this ->module ->_setConfig (array ('schema ' => 'http://www.w3.org/2001/xml.xsd ' , 'endpoint ' => 'http://codeception.com/api/wsdl ' ));
1919 $ this ->layout = \Codeception \Configuration::dataDir ().'/xml/layout.xml ' ;
20- $ this ->module ->client = \Codeception \Util \Connector \Universal ( );
20+ $ this ->module ->client = Stub:: makeEmpty ( ' \Codeception\Util\Connector\Universal ' );
2121 $ this ->module ->is_functional = true ;
22+ $ this ->module ->_before (Stub::makeEmpty ('\Codeception\TestCase\Cept ' ));
2223 }
2324
2425 public function testXmlIsBuilt () {
You can’t perform that action at this time.
0 commit comments