You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
918 B
PHTML
27 lines
918 B
PHTML
6 years ago
|
<?php
|
||
|
|
||
|
namespace Engelsystem\Test\Unit\Http\Exceptions;
|
||
|
|
||
|
use Engelsystem\Http\Exceptions\HttpException;
|
||
|
use PHPUnit\Framework\TestCase;
|
||
|
|
||
|
class HttpExceptionTest extends TestCase
|
||
|
{
|
||
|
/**
|
||
|
* @covers \Engelsystem\Http\Exceptions\HttpException::__construct
|
||
|
* @covers \Engelsystem\Http\Exceptions\HttpException::getStatusCode
|
||
|
* @covers \Engelsystem\Http\Exceptions\HttpException::getHeaders
|
||
|
*/
|
||
|
public function testConstruct()
|
||
|
{
|
||
|
$exception = new HttpException(123);
|
||
|
$this->assertEquals(123, $exception->getStatusCode());
|
||
|
$this->assertEquals('', $exception->getMessage());
|
||
|
$this->assertEquals([], $exception->getHeaders());
|
||
|
|
||
|
$exception = new HttpException(404, 'Nothing found', ['page' => '/test']);
|
||
|
$this->assertEquals('Nothing found', $exception->getMessage());
|
||
|
$this->assertEquals(['page' => '/test'], $exception->getHeaders());
|
||
|
}
|
||
|
}
|