/**
     * Method to test buildLoadQuery().
     *
     * @return void
     *
     * @covers Windwalker\Relation\Handler\AbstractRelationHandler::buildLoadQuery
     */
    public function testBuildLoadQuery()
    {
        $sql = <<<SQL
SELECT *
FROM #__testflower_roses
WHERE `foo_id` = 'Foo' AND `bar_id` = 'Bar'
SQL;
        $this->assertStringSafeEquals($sql, $this->instance->buildLoadQuery());
    }