Google\Cloud\Tests\Datastore\GeoPointTest::testGeoPoint PHP 메소드

testGeoPoint() 공개 메소드

public testGeoPoint ( )
    public function testGeoPoint()
    {
        $point = new GeoPoint(1.1, 2.2);
        $this->assertEquals(1.1, $point->latitude());
        $this->assertEquals(2.2, $point->longitude());
    }