|
SL calls to services are asynchronous... that can make a bit difficult unit testing (you can simulate that using mocks, but sometimes you need to test a real call to a service).
In order to test asynchronous calls the testing framework has some good enqueoperations support.
|