Merge pull request #225 from gabriel-caruso/phpunit

Use PHPUnit\Framework\TestCase instead of PHPUnit_Framework_TestCase
This commit is contained in:
Vance Lucas 2017-11-15 10:35:54 -06:00 committed by GitHub
commit 290113fac0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 2 deletions

View File

@ -16,7 +16,7 @@
"php": ">=5.3.2" "php": ">=5.3.2"
}, },
"require-dev": { "require-dev": {
"phpunit/phpunit": "~4.0" "phpunit/phpunit": "~4.8.35"
}, },
"autoload": { "autoload": {
"psr-0": { "psr-0": {

View File

@ -1,6 +1,8 @@
<?php <?php
class BaseTestCase extends \PHPUnit_Framework_TestCase use PHPUnit\Framework\TestCase;
class BaseTestCase extends TestCase
{ {
public function setUp() public function setUp()
{ {