In ruby on rails one could define data fixtures in yaml files and then load them to execute certain tests, using objects created from those fixtures (using activerecord as the proxy).
I was wondering if there exists something similar for unit testing with Moq & NUnit.
Currently, I initialize objects manually (such as defining a set of existing objects in a storage container) and rely on inheritance to make objects available to various tests. It works, but data is now intermingled with assertion code, and I'd like to split it.