I am new on Load Testing (and in general, testing) with visual studio 2010 and I am dealing with several problems.
My question is, is there any way possible, to add
I think what you actually need is to use:
[TestMethod] public void Test() { TestContext.BeginTimer("mytimer"); httpClient.SendRequest(); TestContext.EndTimer("mytimer"); }
You can find good documentation here.