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

testObjectPropertyInt64() public method

    public function testObjectPropertyInt64()
    {
        $int = '123239';
        $int64 = new Int64($int);
        $res = $this->mapper->objectProperty($int64);
        $this->assertEquals(['integerValue' => $int64->get()], $res);
    }