I would like to mock the System.Diagnostics.Process.Start call, so I've added a Fakes Assembly for the System Assembly.
The problem is that Start is a static method on System.Diagnostics.Process so I'm not getting a shim to be able to hook a delegate for the Start method.
What is the correct way of doing this?
You can use anonymous delegate
For example