想要將值列表作爲參數傳遞給Visual Studio Web性能測試或負載測試插件?如何將值列表作爲參數傳遞給Visual Studio Web性能測試或負載測試插件?
頁面如http://msdn.microsoft.com/en-us/library/ms243191(v=vs.110).aspx解釋瞭如何創建一個插件的基礎知識,我有幾個簡單的插件。但是關於如何爲插件指定屬性(即參數)的細節很少。從實施例I人已經發現C#代碼如
public class MyPlugin : WebTestPlugin
{
[System.ComponentModel.DisplayName("Simple string parameter")]
[System.ComponentModel.Category("The category")]
[System.ComponentModel.Description("Description of the simple string")]
[System.ComponentModel.DefaultValue("The default value")]
public string MySimpleString { get; set; }
的類型可以是int
或bool
以及string
。但我想要一個數組(或列表或集合)的字符串。
當測試組合查看負載測試的屬性時,它顯示爲(collection)
,選擇時出現省略號。點擊省略號打開測試列表的編輯器。類似的東西會很有用。