ApiPlatform\Core\Tests\Doctrine\Util\QueryJoinParserTest::testGetJoinRelationshipWithReflection PHP Method

testGetJoinRelationshipWithReflection() public method

    public function testGetJoinRelationshipWithReflection()
    {
        $methodExist = $this->getFunctionMock('ApiPlatform\\Core\\Bridge\\Doctrine\\Orm\\Util', 'method_exists');
        $methodExist->expects($this->any())->with(Join::class, 'getJoin')->willReturn('false');
        $join = new Join('INNER_JOIN', 'relatedDummy', 'a_1', null, 'a_1.name = r.name');
        $this->assertEquals('relatedDummy', QueryJoinParser::getJoinRelationship($join));
    }