Google\Cloud\Tests\Storage\StorageClientTest::testCreatesBucket PHP Method

testCreatesBucket() public method

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