Skip to content

Commit 182f35c

Browse files
authored
Phpunit wrapper (#4817)
* changed build process for phar * Switched to use phpunit-wrapper * loading shim * fixed REST * Switched to use phpunit-wrapper * Fixed tests * Switched to use phpunit-wrapper * Fixed zend expressive - to not install dev deps * Switched to use phpunit-wrapper * no dev dependencies for project * Fixed laravel event tests * fixed Laravel event mocking * Removed PHP 5.4 and PHP 5.5 tests from Travis CI
1 parent dc4f569 commit 182f35c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/Codeception/Module/SOAP.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -298,7 +298,7 @@ public function seeSoapResponseIncludes($xml)
298298
public function dontSeeSoapResponseEquals($xml)
299299
{
300300
$xml = SoapUtils::toXml($xml);
301-
\PHPUnit_Framework_Assert::assertXmlStringNotEqualsXmlString($xml->C14N(), $this->getXmlResponse()->C14N());
301+
\PHPUnit\Framework\Assert::assertXmlStringNotEqualsXmlString($xml->C14N(), $this->getXmlResponse()->C14N());
302302
}
303303

304304

tests/unit/Codeception/Module/SoapTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
* Class SoapTest
88
* @group appveyor
99
*/
10-
class SoapTest extends \PHPUnit_Framework_TestCase
10+
class SoapTest extends \PHPUnit\Framework\TestCase
1111
{
1212

1313
/**

0 commit comments

Comments
 (0)