Luxifer\Tests\StringTest::testConcatWsFail PHP Method

testConcatWsFail() public method

Expect at least 3 arguments
public testConcatWsFail ( )
    public function testConcatWsFail()
    {
        $query = $this->em->createQuery(sprintf("SELECT CONCAT_WS(' ', '1') FROM %s as e", self::FAKE_ENTITY));
        $query->getSQL();
        $this->fail('Should have failed');
    }