Google\Cloud\Tests\Datastore\EntityMapperTest::testObjectPropertyGeoPoint PHP Method

testObjectPropertyGeoPoint() public method

    public function testObjectPropertyGeoPoint()
    {
        $point = new GeoPoint(1.0, 0.1);
        $res = $this->mapper->objectProperty($point);
        $this->assertEquals(['geoPointValue' => $point->point()], $res);
    }