BloomTests.WebLibraryIntegration.BloomS3ClientTests.UploadBook_EmptyFolder_DoesntThrow C# (CSharp) Method

UploadBook_EmptyFolder_DoesntThrow() private method

private UploadBook_EmptyFolder_DoesntThrow ( ) : void
return void
        public void UploadBook_EmptyFolder_DoesntThrow()
        {
            var storageKeyOfBookFolder = Guid.NewGuid().ToString();
            using (var f = new TemporaryFolder(_workFolder, "emptyFolder"))
            {
                _client.UploadBook(storageKeyOfBookFolder, f.FolderPath, new NullProgress());
            }
            // This doesn't actually create an entry, since the folder is empty,
            // so no need to delete it after our test
        }