Files
whoops/tests/Whoops/TestCase.php
T
Graham Campbell 0346c26963 CS fixes
2014-09-27 11:05:51 +01:00

23 lines
346 B
PHP

<?php
/**
* Whoops - php errors for cool kids
* @author Filipe Dobreira <http://github.com/filp>
*/
namespace Whoops;
class TestCase extends \PHPUnit_Framework_TestCase
{
/**
* @return Run
*/
protected function getRunInstance()
{
$run = new Run();
$run->allowQuit(false);
return $run;
}
}