Hi Everyone,
I've been struggling with this all morning and I may be completely on the wrong track since Rhino Mocks was originally designed for Unit Testing.
However, I have a couple of resusable backend components that handle Authentication and 'Blogging' like features of a website, each contains their own data access layer. While developing the user interface, I really don't want to be messing around with creating test data in a database and / or an XML file.
What I'm striving for is an implementation of my data access interfaces (IBlogRepository), for example to run as singletons throughout the lifetime of a debugging session (aka an in-memory database) so that I can display some data to design against.
Hope that makes sense! All comments greatly appreciated.
Jason