I have an object the references a bunch of Properties.Settings.Default...
values and I need to stub these in the unit test for this object.
Unfortunately the type for the settings object is declared as internal
and so I can't access it from the unit test project.
How can I stub up the return values for these properties? I'm using Rhino Mocks for mocking.