I am wondering if something like this exists:
When debugging in visual studio, it would be really good if it had the ability to copy an object (all its properties and values) into memory. I think that you could put a breakpoint in the code -> right-click the object -> click "create moq to clipboard"
Then you can go to the unit test, insert the text that will insert the code to create this object with all these properties.
I suppose this will save a ton of time and be really useful for fixing bugs.
One of the difficult things that I find with unit test is the manual process of creating mock objects.
source share