如何从 Microsoft 测试管理器中的测试用例读取参数值

发布于 2024-12-16 21:27:49 字数 152 浏览 1 评论 0原文

我正在尝试使用 Microsoft 测试管理器使用 C# 以编程方式执行测试用例。 为此,我想读取存储在 Microsoft 测试管理器中的参数值。 请建议我该怎么做 例如:- 读取内部参数“MY Value”的值 我尝试输入图像,但它不起作用......

问候 残酷的

I am trying to execute the testcases programatically using the microsoft test manager using c#.
For that I want to read the parameter values stored in Microsoft Test Manager.
Please suggest me how to do that
Eg:- Read the value of internal paramter "MY Value"
I tried to enter the image but its not working ...

Regards
Harsh

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

孤独患者 2024-12-23 21:27:49

我想您想从自动化测试实现的测试用例的数据源中读取参数。

您必须将您的测试与 TFS 上的测试用例 ID 相关联。

尝试以下代码。

[TestClass]
public class TestClass
{
    public TestContext TestContext { get; set; }
    public DataRow DataRow { get; set; }

    [TestMethod]
    [DataSource("Microsoft.VisualStudio.TestTools.DataSource.TestCase", 
        "http://localhost:8080/tfs/[CollectionName];[ProjectName]", "[TestCaseId]", DataAccessMethod.Sequential)]
    public void TestMethod()
    {
        string column1 = TestContext.DataRow[0].ToString(); // read parameter by column index
        string column2 = TestContext.DataRow["Column2"].ToString(); //read parameter by column name
    }
}

请记住,您的测试方法将为测试用例数据源的每一行(迭代)运行一次。

I suppose you want to read the parameters from the datasource of the Test Case that your automated test implements.

You have to associate your test with the Test Case's Id on TFS.

Try the following code.

[TestClass]
public class TestClass
{
    public TestContext TestContext { get; set; }
    public DataRow DataRow { get; set; }

    [TestMethod]
    [DataSource("Microsoft.VisualStudio.TestTools.DataSource.TestCase", 
        "http://localhost:8080/tfs/[CollectionName];[ProjectName]", "[TestCaseId]", DataAccessMethod.Sequential)]
    public void TestMethod()
    {
        string column1 = TestContext.DataRow[0].ToString(); // read parameter by column index
        string column2 = TestContext.DataRow["Column2"].ToString(); //read parameter by column name
    }
}

Have in mind that your TestMethod will run one time for each row (iteration) of the Test Case's datasource.

月下伊人醉 2024-12-23 21:27:49

我认为你所描述的是数据驱动的编码 UI 测试。

http://msdn.microsoft.com/en-us/library/ee624082.aspx

I think what you describe is Data-Driven Coded UI tests.

http://msdn.microsoft.com/en-us/library/ee624082.aspx

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文