the whole shebang
This commit is contained in:
22
vendor/filp/whoops/tests/Whoops/TestCase.php
vendored
Normal file
22
vendor/filp/whoops/tests/Whoops/TestCase.php
vendored
Normal file
@@ -0,0 +1,22 @@
|
||||
<?php
|
||||
/**
|
||||
* Whoops - php errors for cool kids
|
||||
* @author Filipe Dobreira <http://github.com/filp>
|
||||
*/
|
||||
|
||||
namespace Whoops;
|
||||
use Whoops\Run;
|
||||
|
||||
class TestCase extends \PHPUnit_Framework_TestCase
|
||||
{
|
||||
/**
|
||||
* @return Whoops\Run
|
||||
*/
|
||||
protected function getRunInstance()
|
||||
{
|
||||
$run = new Run;
|
||||
$run->allowQuit(false);
|
||||
|
||||
return $run;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user