Skip to content

Commit

Permalink
Use PHPUnit\Framework\TestCase instead of PHPUnit_Framework_TestCase
Browse files Browse the repository at this point in the history
  • Loading branch information
samnela committed Nov 24, 2018
1 parent ba2c37f commit a8017f8
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 a8017f8

Please sign in to comment.