mirror of
https://github.com/filp/whoops.git
synced 2026-08-27 10:28:40 +00:00
23 lines
346 B
PHP
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;
|
|
}
|
|
}
|