Hello,
I am created an EntityManager in a unit test using the CompositionContext.Fake with the following line of code:
var em = new DomainModelEntityManager(compositionContextName: CompositionContext.Fake.Name);
This works fine when running the silverlight unit test runner from the browser.
However when I run this from Devexpress's Coderush Test runner, I get the white screen of death and in the StatLight test runner, I get the more informed error of:
An unknown request was made to the StatLight's web server. You may want to check your test project for what generated the following request.
********** Request Information **********
Url : http://localhost:8887/EntityService.svc/sl
Is it possible to use faking this way without the Business object server running?
Thanks
Chris