I have a following setup in C# - I have a component which gets a folder path in the constructor, and later, some huge data are processed by it and written out to disk in form of several files (order of magnitude about 1Gb, very IO intensive). On retrieve, the data are read in (also IO intense), and my unit test (nunit with MOQ, setup as in fact a component test) compares them with the original data. The problem - the unit test takes several minutes to complete, what is quite annoying. I thought, is there a way to create a RAMDrive or RAMFolder in the test fixture setup, and remove it in tear down. I cant use the memory files or memory streams, as outside of the component noone should know which files are used exactly.
Any idea?
Best regards, Petr