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

testStageComponent() public method

public testStageComponent ( )
    public function testStageComponent()
    {
        $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->stageComponentAction());
    }