DoctrineExtensions\Tests\Query\Mysql\Log10Test::testLog10 PHP Method

testLog10() public method

public testLog10 ( )
    public function testLog10()
    {
        $q = $this->entityManager->createQuery("SELECT LOG10(2) from DoctrineExtensions\\Tests\\Entities\\Blank");
        $this->assertEquals("SELECT LOG10(2) AS sclr_0 FROM Blank b0_", $q->getSql());
    }
Log10Test