Exemplo n.º 1
0
 /**
  * AwsBucket can find and return ockets.
  *
  * @throws Exception If fails
  */
 @Test
 public void findsAndReturnsOckets() throws Exception {
   final Region region = Mockito.mock(Region.class);
   final Bucket bucket = new AwsBucket(region, "example.com");
   final Ocket ocket = bucket.ocket("test");
   MatcherAssert.assertThat(ocket, Matchers.notNullValue());
 }