如何使用Visual Studio来执行负载测试[2015年企业](How to perform l

2019-11-04 06:15发布

首先,我是新来的测试。 我想执行的Web API的[约70]负载测试。 我使用的是带有负载测试功能VS2015企业,但我不知道怎么用。

我想执行的步骤是:

1) Response time of the service when running a single request.

2) Memory consumption used by the service when running a single request.

3) Maximum number of concurrent requests supported by the service

4) Memory consumption used by the service when running the maximum number of concurrent requests.

5) Response time of the service when running the maximum number of concurrent requests.

6) Maximum number of concurrent requests that can be executed so that the response time is less than 2 seconds.

我有单元测试准备好所有的API。 我发现的地方,我可以用它进行负载测试,是真的吗?

如果需要对问题提出更多的澄清,在回信中,而不是downvoting问题。

需要帮忙....

Answer 1:

我在使用Visual Studio负载测试专家,但你可以找到这些链接参考使用Visual Studio进行性能测试两个Web应用程序和Web服务。

  1. https://www.visualstudio.com/en-us/docs/test/performance-testing/getting-started/getting-started-with-performance-testing
  2. https://msdn.microsoft.com/en-us/library/ms182557.aspx
  3. https://msdn.microsoft.com/en-us/library/ee923686.aspx

他们应该回答您的大多数问题。



文章来源: How to perform load testing using visual studio [ 2015 Enterprise ]