I'm trying to get started with Moq and having trouble finding any good resources to do what I need.
I have a Data Interface class that has a Get method which returns a Dataset via Stored Procedure. This is the way the code was written and I can't change it at the moment so it has to be done this way.
I want to test this class by Mocking the Dataset and returning data so I don't have to actually make a database call.
Is anyone doing this and if so where is a good place to get started doing it?