Google\Cloud\Tests\Snippets\Logging\MetricTest::testDelete PHP Method

testDelete() public method

public testDelete ( )
    public function testDelete()
    {
        $snippet = $this->snippetFromMethod(Metric::class, 'delete');
        $snippet->addLocal('metric', $this->metric);
        $this->connection->deleteMetric(Argument::any())->shouldBeCalled();
        $this->metric->setConnection($this->connection->reveal());
        $snippet->invoke();
    }