mirror of
https://github.com/filp/whoops.git
synced 2026-09-17 21:26:34 +00:00
Use namespaced version of PHPUnit's TestCase
This commit is contained in:
+1
-1
@@ -16,7 +16,7 @@
|
||||
"psr/log": "^1.0.1"
|
||||
},
|
||||
"require-dev": {
|
||||
"phpunit/phpunit": "^4.8 || ^5.0",
|
||||
"phpunit/phpunit": "^4.8.35 || ^5.7",
|
||||
"mockery/mockery": "0.9.*",
|
||||
"symfony/var-dumper": "^2.6 || ^3.0"
|
||||
},
|
||||
|
||||
@@ -6,8 +6,9 @@
|
||||
|
||||
namespace Whoops;
|
||||
|
||||
use PHPUnit\Framework\TestCase as BaseTestCase;
|
||||
|
||||
class TestCase extends \PHPUnit_Framework_TestCase
|
||||
class TestCase extends BaseTestCase
|
||||
{
|
||||
/**
|
||||
* @return Run
|
||||
|
||||
@@ -1,7 +1,9 @@
|
||||
<?php
|
||||
namespace Whoops\Util;
|
||||
|
||||
class SystemFacadeTest extends \PHPUnit_Framework_TestCase
|
||||
use PHPUnit\Framework\TestCase;
|
||||
|
||||
class SystemFacadeTest extends TestCase
|
||||
{
|
||||
/**
|
||||
* @var \Mockery\Mock
|
||||
|
||||
Reference in New Issue
Block a user