So I want to run some automated tests with xunit that includes files. Currently, I load the files from a local path, copy them from there and delete the copy after using it. But for me, this is not a satisfying solution.
The test should be for encrypting and decrypting files. Usually, I'd use some libraries for this, but a particular algorithm is required in my case. The ideal solution for me would be that the test creates a temporary folder and copies the files in there somehow, and after the trial, the folder should be deleted.
If someone knows how to do this or have another solution for this kind of problem, I would love to know :D