28 lines
772 B
PHP
28 lines
772 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Engelsystem\Test\Unit\Http\Exceptions;
|
|
|
|
use Engelsystem\Http\Exceptions\ValidationException;
|
|
use Engelsystem\Http\Validation\Validator;
|
|
use PHPUnit\Framework\MockObject\MockObject;
|
|
use PHPUnit\Framework\TestCase;
|
|
|
|
class ValidationExceptionTest extends TestCase
|
|
{
|
|
/**
|
|
* @covers \Engelsystem\Http\Exceptions\ValidationException::__construct
|
|
* @covers \Engelsystem\Http\Exceptions\ValidationException::getValidator
|
|
*/
|
|
public function testConstruct(): void
|
|
{
|
|
/** @var Validator|MockObject $validator */
|
|
$validator = $this->createMock(Validator::class);
|
|
|
|
$exception = new ValidationException($validator);
|
|
|
|
$this->assertEquals($validator, $exception->getValidator());
|
|
}
|
|
}
|