[HttpKernel] add a test for FilterControllerEvents

This commit is contained in:
Amrouche Hamza 2017-11-19 13:41:04 +02:00
parent 3b6c22e86a
commit b746e8a017
No known key found for this signature in database
GPG Key ID: 6968F2785ED4F012

View File

@ -0,0 +1,17 @@
<?php
namespace Symfony\Component\HttpKernel\Tests\Event;
use Symfony\Component\HttpFoundation\Request;
use Symfony\Component\HttpKernel\Event\FilterControllerArgumentsEvent;
use PHPUnit\Framework\TestCase;
use Symfony\Component\HttpKernel\Tests\TestHttpKernel;
class FilterControllerArgumentsEventTest extends TestCase
{
public function testFilterControllerArgumentsEvent()
{
$filterController = new FilterControllerArgumentsEvent(new TestHttpKernel(), function () {}, array('test'), new Request(), 1);
$this->assertEquals($filterController->getArguments(), array('test'));
}
}