read() public method

public read ( $key )
 /**
  * @expectedException \RuntimeException
  */
 public function testThrowsExceptionIfBucketMissingAndNotCreating()
 {
     $mock = new MockPlugin(array(new Response(404)));
     $client = $this->getClient();
     $client->addSubscriber($mock);
     $adapter = new AwsS3($client, 'bucket');
     $adapter->read('foo');
 }