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

testSoundex() public method

public testSoundex ( )
    public function testSoundex()
    {
        $q = $this->entityManager->createQuery("SELECT SOUNDEX('Hello') from DoctrineExtensions\\Tests\\Entities\\Blank");
        $this->assertEquals("SELECT SOUNDEX('Hello') AS sclr_0 FROM Blank b0_", $q->getSql());
    }