Google\Cloud\Tests\Snippets\Storage\BucketTest::testDelete PHP Method

testDelete() public method

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