I am wondering if anything 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 am thinking of something that you could put a break point in code -> right click the object -> Click "create moq into clipboard"
Then you could go to your unit test, paste the text which would paste the code to create that object with all of those properties.
I imagine this would save loads of time, and would be really useful for fixing bugs.
One of the difficult things I find with unit test is the manual process in creating the mock objects.