-
Notifications
You must be signed in to change notification settings - Fork 260
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
MockFile.Delete does not throw exception when file does not exist #284
Comments
For clarity, File.Delete from System.IO will only throw if the directory does not exist. If it tries to delete a file that does not exist, it works just fine. The former throws a DirectoryNotFoundException. We should implement this for parity with System.IO |
Additional clarification.. it looks like this will break some old tests as well. We'll need to add a directory in the failing tests. |
…when file does not exist".
Hello @jpreese, @fgreinacher . I have tried to fix the issue in my repository fork. Could you please check the result and tell me if something needs to be corrected? |
Hey @peter-sereda - thanks for taking care of this. Please open a PR against this repository so that we get test results. |
@fgreinacher , done. |
… file does not exist.
@peter-sereda @fgreinacher @jpreese thanks a lot guys for your contribution. Really appreciated! |
Unit test to reproduce:
The above code does not throw any exception, while the real File.Delete from System IO will throw
The text was updated successfully, but these errors were encountered: