Welcome to MSDN Blogs Sign in | Join | Help

Load Testing Web Services with Unit Tests

Here is an article which describes how to load test web services with unit tests: http://blogs.msdn.com/slumley/pages/load-testing-web-services-with-unit-tests.aspx

Published Friday, April 14, 2006 4:11 PM by slumley

Comments

# re: Load Testing Web Services with Unit Tests

Tuesday, May 23, 2006 12:24 AM by snotman
Hi Sean,

Thanks for the tip.
How come the transactions don't work with a data driven unit test?  
Where else can I get more information on textContext properties that are useful in load tests?

# re: Load Testing Web Services with Unit Tests

Thursday, October 26, 2006 8:47 AM by jamshidmf

Hi,

 If i need to iterate through a datapool at the load test level how do i do it ?

More explanation:

 I have one webservice to test with multiple data, i found out options to iterate at unit test level but not at load test level. any help is appreciated.

Thanks,

Jamshid.

# re: Load Testing Web Services with Unit Tests

Thursday, November 02, 2006 7:18 AM by jamshidmf

Hi,

 For the following code, i am not seeing the timers in the test result, is there any specific option i should set to see the transactions ?

  TestContext testContextInstance1;

       public TestContext TestContext

       {

           get { return testContextInstance1; }

           set { testContextInstance1 = value; }

       }

    string Response = string.Empty;

           try

           {

               //Get the response.

               TestContext.BeginTimer("ARR");

               Response = realtimeProxyObject.SubmitRequest(request, out duration);

               TestContext.EndTimer("ARR");

           }

Anonymous comments are disabled
 
Page view tracker