DoctrineExtensions\Tests\Query\Mysql\StringTest::testLpad PHP Method

testLpad() public method

Test case for MYSQL function LPAD.
public testLpad ( )
    public function testLpad()
    {
        $q = $this->entityManager->createQuery("SELECT LPAD('Hellow', 10, '**') from DoctrineExtensions\\Tests\\Entities\\Blank");
        $this->assertEquals("SELECT LPAD('Hellow', 10, '**') AS sclr_0 FROM Blank b0_", $q->getSql());
    }