Cover code called by Service Bus
Answered
Hi,
I am using dot cover for measuring coverage of my web application. I am using Service bus for processing messages recieved in an Async method.
I am not able to get coverage of async method called by Service bus but I am only able to get coverage of REST API's called.
Is there any way that I can get coverage of code called by service bus?
Please sign in to leave a comment.
Hello Raza Ashfaq,
I can't help you much with service bus. But will try to do my best with dotCover. The most common reasons for partial coverage are:
1) dotCover covers .NET processes that were started by dotCover(or descendants). If your code is located in another process tree it won't be covered
2) If PDB files are not available
3) If some kind of postprocessing or code generation is used. In this case actual code that was executed might not match PDBs
Does anything above resembles your case?