I have a class that I am testing. This class uses takes in an interface as a constructor parameter. This interface has a method that has an out parameter.
What I want to do is mock this method so that the out parameter is always a particular value.
How can this be done?