Examples of CouldNotReadMetadataException


Examples of com.splunk.shuttl.archiver.metastore.MetadataStore.CouldNotReadMetadataException

    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));
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.