想要将值列表作为参数传递给 Visual Studio Web 性能测试或负载测试插件?
http://msdn.microsoft.com/en-us/library/ms243191(v=vs.110).aspx等页面解释了如何创建插件的基础知识,我有几个简单的插件。但是关于如何为插件指定属性(即参数)的细节很少。从示例中我发现了 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
。但我想要一个字符串数组(或列表或集合)。
查看负载测试的Test mix属性时,它会显示为(collection)
,选择时会出现一个省略号。单击省略号会打开测试列表的编辑器。类似的东西会很有用。