Unit Testing using files from Amazon S3 in C#
Using actual files is not an ideal solution for unit testing. You should have some sort of interface that duplicates what's in a file. Unfortunately, the current solution I'm working on doesn't have an interface (yet!). I thought about storing the files in the…