开发者

Building unit tests for asp.net mvc2 async controller actions that return data

I've had a good look around and I can't seem a specific answer to the above question. For example, this thread:

Building unit tests for MVC2 AsyncControllers

talks about waiting for async a开发者_如何学JAVActions to finish, which is great, but I then need to be able to retrieve the data returned from the Completed method.

Cheers, Andrew.


one way is to do this is make the event handler:

controller.AsyncManager.Finished += (sender, ev) => {
                                                  var result = controller.TransactionCompleted();
                                                  trigger.Set();
                                                }
0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜