Google\Cloud\Tests\BigQuery\ValueMapperTest::testReturnsInt64Object PHP Method

testReturnsInt64Object() public method

    public function testReturnsInt64Object()
    {
        $mapper = new ValueMapper(true);
        $actual = $mapper->fromBigQuery(['v' => '123'], ['type' => 'INTEGER']);
        $this->assertInstanceOf(Int64::class, $actual);
        $this->assertEquals('123', $actual->get());
    }