sonarrradarrplexorganizrnginxdashboardlandingpagestartpagelandinghtpcserverhomepagesabnzbdheimdallembycouchpotatonzbgetbookmarkapplication-dashboardmuximux
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
576 B
18 lines
576 B
6 years ago
|
<?php
|
||
|
|
||
|
namespace Symfony\Component\HttpKernel\Tests\Event;
|
||
|
|
||
|
use PHPUnit\Framework\TestCase;
|
||
|
use Symfony\Component\HttpFoundation\Request;
|
||
|
use Symfony\Component\HttpKernel\Event\ControllerArgumentsEvent;
|
||
|
use Symfony\Component\HttpKernel\Tests\TestHttpKernel;
|
||
|
|
||
|
class ControllerArgumentsEventTest extends TestCase
|
||
|
{
|
||
|
public function testControllerArgumentsEvent()
|
||
|
{
|
||
|
$filterController = new ControllerArgumentsEvent(new TestHttpKernel(), function () {}, ['test'], new Request(), 1);
|
||
|
$this->assertEquals($filterController->getArguments(), ['test']);
|
||
|
}
|
||
|
}
|