Google\Cloud\Tests\Int64Test::testToString PHP Method

testToString() public method

public testToString ( )
    public function testToString()
    {
        $int = '123';
        $int64 = new Int64($int);
        $this->assertEquals($int, (string) $int64);
    }