I have a WPF ViewModel, that has a command which opens a File dialog like this:
var dlg = new OpenFileDialog();
var result = dlg.ShowDialog();
Now I would like to unit test that command. ShowDialog is a method inherited from the CommonDialog, so I assumed I can shim it like this:
Microsoft.Win32.Fakes.ShimCommonDialog.AllInstances.ShowDialog = () => true;
but I'm getting the following compilation error:
Delegate
Microsoft.QualityTools.Testing.Fakes.FakesDelegates.Func<Microsoft.Win32.CommonDialog,bool?>
does not take 0 arguments
Any ideas?
The below code would achieve what you need.
System Under Test (SUT)
Unit Test (using MS Fakes)
Note that you need to have the PresentationFramework.4.0.0.0.Fakes assembly as well as the correct additional Fakes assemblies in your test.