Google\Cloud\Tests\Snippets\Storage\BucketTest::testDelete PHP Méthode

testDelete() public méthode

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();
    }