Aimeos\ShopBundle\Tests\Controller\CatalogControllerTest::testFilterComponent PHP Method

testFilterComponent() public method

public testFilterComponent ( )
    public function testFilterComponent()
    {
        $mock = $this->getMockBuilder('Aimeos\\ShopBundle\\Controller\\CatalogController')->setMethods(array('getOutput'))->disableOriginalConstructor()->getMock();
        $mock->expects($this->once())->method('getOutput')->will($this->returnValue('test'));
        $this->assertEquals('test', $mock->filterComponentAction());
    }