BloomTests.WebLibraryIntegration.BloomS3StandardUpDownloadTests.UploadDownloadStandardBook_ExcludedFilesFileDidNotGetSent C# (CSharp) Method

UploadDownloadStandardBook_ExcludedFilesFileDidNotGetSent() private method

        public void UploadDownloadStandardBook_ExcludedFilesFileDidNotGetSent()
        {
            // Verify that excluded files did NOT get uploaded
            foreach (var file in ExcludedFiles)
            {
                var notexpectedDestPath = Path.Combine(_destCollectionPath, BookName, file);
                Assert.IsFalse(File.Exists(notexpectedDestPath), notexpectedDestPath);
            }
        }