Aimeos\ShopBundle\Tests\Controller\CheckoutControllerTest::testConfirmComponent PHP Method

testConfirmComponent() public method

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