Use PHPUnit\Framework\TestCase instead of PHPUnit_Framework_TestCase

This commit is contained in:
Gabriel Caruso 2017-11-11 02:28:10 -02:00
parent 87775d7626
commit 14a467ba24
2 changed files with 4 additions and 2 deletions

View File

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

View File

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