Beberlei\Metrics\Tests\Collector\InfluxDBTest::testCollectMeasureWithTags PHP Method

testCollectMeasureWithTags() public method

    public function testCollectMeasureWithTags()
    {
        $expectedTags = array('dc' => 'west', 'node' => 'nemesis101');
        $expectedArgs = array('points' => array(array('measurement' => 'series-name', 'fields' => array('value' => 47.11))), 'tags' => $expectedTags);
        $this->client->expects($this->once())->method('mark')->with($expectedArgs);
        $this->collector->setTags($expectedTags);
        $this->collector->measure('series-name', 47.11);
        $this->collector->flush();
    }