Google\Cloud\Tests\Storage\StorageClientTest::testCreatesBucket PHP Méthode

testCreatesBucket() public méthode

public testCreatesBucket ( )
    public function testCreatesBucket()
    {
        $this->connection->insertBucket(Argument::any())->willReturn(['name' => 'bucket']);
        $this->client->setConnection($this->connection->reveal());
        $this->assertInstanceOf('Google\\Cloud\\Storage\\Bucket', $this->client->createBucket('bucket'));
    }