assertEquals(longData, archiveBucketSize.readBucketSize(bucket));
}
public void readBucketSize_metadataStoreException_null() {
when(metadataStore.read(any(Bucket.class), anyString())).thenThrow(
new CouldNotReadMetadataException());
assertEquals(null, archiveBucketSize.readBucketSize(bucket));
}