Skip to content

Commit

Permalink
Merge pull request #73 from samnela/remove-deprecated-testcase
Browse files Browse the repository at this point in the history
Use PHPUnit\Framework\TestCase instead of PHPUnit_Framework_TestCase
  • Loading branch information
IcyApril authored Jan 2, 2019
2 parents 97af6a2 + a8017f8 commit 7e3e367
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/TestCase.php
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
<?php
use GuzzleHttp\Psr7;
use PHPUnit\Framework\TestCase as BaseTestCase;

/**
* Class TestCase
* @SuppressWarnings(PHPMD.NumberOfChildren)
*/
abstract class TestCase extends PHPUnit_Framework_TestCase
abstract class TestCase extends BaseTestCase
{
/**
* Returns a PSR7 Stream for a given fixture.
Expand Down

0 comments on commit 7e3e367

Please sign in to comment.