Symfony\Component\HttpKernel\Tests\EventListener\TranslatorListenerTest::testLocaleIsSetInOnKernelRequest PHP Method

testLocaleIsSetInOnKernelRequest() public method

    public function testLocaleIsSetInOnKernelRequest()
    {
        $this->translator
            ->expects($this->once())
            ->method('setLocale')
            ->with($this->equalTo('fr'));

        $event = new GetResponseEvent($this->createHttpKernel(), $this->createRequest('fr'), HttpKernelInterface::MASTER_REQUEST);
        $this->listener->onKernelRequest($event);
    }