mirror of
https://github.com/filp/whoops.git
synced 2026-09-22 00:00:53 +00:00
58 lines
1.5 KiB
PHP
58 lines
1.5 KiB
PHP
<?php
|
|
/**
|
|
* Damnit - php errors for cool kids
|
|
* @author Filipe Dobreira <http://github.com/filp>
|
|
*/
|
|
|
|
namespace Damnit\Exception;
|
|
use Damnit\Exception\Inspector;
|
|
use Damnit\TestCase;
|
|
use RuntimeException;
|
|
use Exception;
|
|
|
|
class InspectorTest extends TestCase
|
|
{
|
|
/**
|
|
* @param Exception $exception|null
|
|
* @return Damnit\Exception\Inspector
|
|
*/
|
|
protected function getInspectorInstance(Exception $exception = null)
|
|
{
|
|
return new Inspector($exception);
|
|
}
|
|
|
|
/**
|
|
* @covers Damnit\Exception\Inspector::getExceptionName
|
|
*/
|
|
public function testReturnsCorrectExceptionName()
|
|
{
|
|
$exception = $this->getException();
|
|
$inspector = $this->getInspectorInstance($exception);
|
|
|
|
$this->assertEquals(get_class($exception), $inspector->getExceptionName());
|
|
}
|
|
|
|
/**
|
|
* @covers Damnit\Exception\Inspector::__construct
|
|
* @covers Damnit\Exception\Inspector::getException
|
|
*/
|
|
public function testExceptionIsStoredAndReturned()
|
|
{
|
|
$exception = $this->getException();
|
|
$inspector = $this->getInspectorInstance($exception);
|
|
|
|
$this->assertSame($exception, $inspector->getException());
|
|
}
|
|
|
|
/**
|
|
* @covers Damnit\Exception\Inspector::getFrames
|
|
*/
|
|
public function testGetFramesReturnsIterator()
|
|
{
|
|
$exception = $this->getException();
|
|
$inspector = $this->getInspectorInstance($exception);
|
|
|
|
$this->assertInstanceOf('Damnit\\Exception\\FrameIterator', $inspector->getFrames());
|
|
}
|
|
}
|