ion/tests/Ion/Exception/DoubleRenderExceptionTest.php

14 lines
359 B
PHP
Raw Normal View History

2016-08-26 17:21:50 -04:00
<?php
use Aviat\Ion\Exception\DoubleRenderException;
class DoubleRenderExceptionTest extends Ion_TestCase {
public function testDefaultMessage()
{
$this->expectException(DoubleRenderException::class);
$this->expectExceptionMessage('A view can only be rendered once, because headers can only be sent once.');
throw new DoubleRenderException();
}
}