ErrorHandlerTest modified for $_SESSION var passes
This commit is contained in:
@ -42,11 +42,15 @@ class ErrorHandlerTest extends PHPUnit_Framework_TestCase
|
||||
trigger_error("test error", E_USER_ERROR);
|
||||
}
|
||||
|
||||
/**
|
||||
* @TODO: ErrorHandler->wrapTrace() not used
|
||||
*/
|
||||
public function testShowDebug()
|
||||
{
|
||||
try {
|
||||
throw new ErrorException("test error", E_USER_ERROR);
|
||||
} catch (ErrorException $e) {
|
||||
$_SESSION['some'] = 'value';
|
||||
$result = ErrorHandler::showDebug($e);
|
||||
$this->assertNotEmpty($result);
|
||||
$this->assertStringStartsWith('<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">', $result);
|
||||
|
Reference in New Issue
Block a user