Google\Cloud\Tests\Datastore\Query\GqlQueryTest::testBindingTypeAutomaticDetectionNamed PHP Method

testBindingTypeAutomaticDetectionNamed() public method

    public function testBindingTypeAutomaticDetectionNamed()
    {
        $query = new GqlQuery($this->mapper, 'SELECT * FROM foo', ['bindings' => ['bind' => 'this']]);
        $res = $query->queryObject();
        $this->assertEquals($res['namedBindings'], ['bind' => ['value' => ['stringValue' => 'this']]]);
    }