InfluxDB\Test\PointTest::testPointStringRepresentation PHP Method

testPointStringRepresentation() public method

    public function testPointStringRepresentation()
    {
        $expected = 'instance,host=server01,region=us-west cpucount=10i,free=1i,test="string",bool=false,value=1.11 1440494531376778481';
        $point = $this->getPoint('1440494531376778481');
        $this->assertEquals($expected, (string) $point);
    }