How do you get the iteration / line number from TestContext in data driven tests?

旧巷老猫 提交于 2019-12-04 17:02:42

问题


I've implemented a data driven test using MsTest framework.

I was wondering if there was a way to get the iteration / line number of the current test code from the TestContext object?

As far as I can see, the only property relevant to DDT is DataRow that enables getting info for the current iteration from the data source, but I don't see any property that gives me what I need.


回答1:


Try this:

int currentIteration = TestContext.DataRow.Table.Rows.IndexOf(TestContext.DataRow);



回答2:


private readonly PropertyInfo _rowIdProp = typeof(System.Data.DataRow).GetProperty("rowID", BindingFlags.NonPublic | BindingFlags.GetProperty | BindingFlags.Instance);

..

// No datarow means only one iteraton

var currentIteration = DataRow == null ? 1 : (Int64)_rowIdProp.GetValue(DataRow, null);



回答3:


this is without the DataSource attribute but i can tell you that it iterate by it self without the for loop

     for (int i = 0; i < x; i++)
        {
             int currentIteration = TestContext.DataRow.Table.Rows.IndexOf(TestContext.DataRow);
             DataTable dt = TestContext.DataRow.Table;
             int rowCount = dt.Rows.Count;

             DataRow secondRow = dt.Rows[i];
             string name = secondRow["name"].ToString();
             int Balance = Convert.ToInt32(secondRow["Balance"]);
             int Amount = Convert.ToInt32(secondRow["Amount"]);
             int Count = Convert.ToInt32(secondRow["Count"]);
             Assert.AreEqual(Balance, Amount);

        }


来源:https://stackoverflow.com/questions/9454904/how-do-you-get-the-iteration-line-number-from-testcontext-in-data-driven-tests

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!