I'm not even sure if there is a utility that allows this, but it seems like such a common need?
Is there a program/library/component that will generate mocked .NET objects (repositories) that will yield some mocked data as certain database calls.
Allow me to elaborate: If I'm testing a repository (not unit testing, simply testing in a console window) and when I pass a selection criteria to my repository, it returns a list of objects. I would /love/ for an ability to capture that list of objects and convert it to static setup C# code that would serve as a setup for a unit test. My objects are quiet complex and it takes a long time to set them up properly.
Is this possible? My team is using Moq & Ninject