Examples of LocalBucket


Examples of com.splunk.shuttl.archiver.model.LocalBucket

    bucketCopier.copyBucket(bucket);
    verify(deletesBuckets).deleteBucket(exportedBucket);
  }

  public void copyBucket_whenExceptionIsThrown_deleteExportedBucket() {
    LocalBucket exportedBucket = getMockedBucketReturnFromExporter();
    doThrow(new RuntimeException()).when(archiveBucketTransferer)
        .transferBucketToArchive(exportedBucket);
    try {
      bucketCopier.copyBucket(bucket);
    } catch (Throwable e) {
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.