Sonata\Tests\BasketBundle\Block\BasketBlockServiceTest::testGetName PHP Method

testGetName() public method

public testGetName ( )
    public function testGetName()
    {
        $engineInterfaceMock = $this->getMockBuilder('Symfony\\Bundle\\FrameworkBundle\\Templating\\EngineInterface')->disableOriginalConstructor()->getMock();
        $block = new BasketBlockService('test', $engineInterfaceMock);
        $this->assertEquals('Basket items', $block->getName());
    }
BasketBlockServiceTest