下面通過乙個簡單的例子來講解vs2005是如何做負載測試的。
1、 編寫乙個加法程式,其中編寫乙個加法方法,然後呼叫該方法。
//程式源**
請using system;
using system.data;
using system.configuration;
using system.web;
using system.web.security;
using system.web.ui;
using system.web.ui.webcontrols;
using system.web.ui.webcontrols.webparts;
using system.web.ui.htmlcontrols;
public partial class _default : system.web.ui.page
public int add(int a, int b)
protected void button1_click(object sender, eventargs e)
}//程式執行截圖
2、 新建負載測試
在工具欄中「測試->新建測試」,在彈出的對話方塊中選擇「負載測試」。此時彈出「負載測試嚮導」對話方塊,在該嚮導中共有7步來完成負載測試的設定。
第一步:歡迎使用。(圖略)
第2步:方案資訊設定。(圖略)
第3步:選擇負載模式(圖略)
第4步:新增測試組合
第5步:瀏覽器組合(共計5種瀏覽器)
第6步:網路組合
2)執行該負載測試,以檢視其結果資訊,通過對結果的分析,確定效能的瓶勁。
結論:使用vs2005可以進行簡單的web程式的負載測試,不足之處是對測試的建立和結果的分析功能比較簡單,不適合較複雜專案
**自http://edu.chinaitlab.com/bdqn/781687_2.html
還有乙個不錯相關的文章http://www.51testing.com/?uid-63444-action-spacelist-type-blog-itemtypeid-2752
使用VS2005進行WEB功能測試
下面通過乙個簡單的例子來講解 vs2005 是如何做 web測試的.1 編寫乙個加法程式,其中編寫乙個加法方法,然後呼叫該方法。程式源 using system using system.data using system.configuration using system.web using s...
用VS2005進行單元測試
先建立乙個類庫,名稱為largest,用於尋找最大數 using system using system.collections.generic using system.text namespace largest for index 0 index list.length 1 index ret...
VS2005 構建軟體專案
前言 在本文章中,並不像其他的小型工程拷貝一些庫的原始碼,直接新增到工程中,而是作為乙個專案,新增到 工程中,並且通過設定專案的依賴項,完成工程的單步除錯 選擇屬性,c c 優化 禁用優化 解決 方案配置成release,好處在於呼叫乙個release版本的第三方dll,能夠無縫的執行。本文沒有涉及...