Contao\CoreBundle\Test\EventListener\MergeHttpHeadersListenerTest::testInstantiation PHP Method

testInstantiation() public method

Tests the object instantiation.
public testInstantiation ( )
    public function testInstantiation()
    {
        /** @var ContaoFrameworkInterface $framework */
        $framework = $this->getMock('Contao\\CoreBundle\\Framework\\ContaoFrameworkInterface');
        $listener = new MergeHttpHeadersListener($framework);
        $this->assertInstanceOf('Contao\\CoreBundle\\EventListener\\MergeHttpHeadersListener', $listener);
    }