Test driven ECO
Here are my latest revelations :-) 01 Instead of having to mock IEcoServiceProvider and IOclPsService in order to avoid DB access simply use PersistenceMapperMemory.  This way I can create the objects I want, UpdateDatabase, and then run my tests.  It’s much easier to read, and more importantly less typing. 02 My page controllers no longer use an EcoSpace.  Instead the code always uses a ServiceProvider property of type IEcoServiceProvider.  When I want to test my controller I create an instance and set its ServiceProvider property.  Now whenever the controller needs to do anything it will go through the ServiceProvider I specified.  This is beneficial for a number of reasons.  Firstly it means that I can create an EcoSpace in my test and set its PersistenceMapper to PersistenceMapperMemory before activating it.  Secondly I can also opt to pass a mocked IEcoServiceProvider which either returns the real service requested or returns a mocked one.  An example of this is that I valida...